aboutsummaryrefslogtreecommitdiff
path: root/rpt.c
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@bordeaux-inp.fr>2023-11-11 20:50:07 +0100
committerTristan Riehs <tristan.riehs@bordeaux-inp.fr>2023-11-11 20:50:07 +0100
commit523f2de65f9cd04c2d116ef7aa1172af99c1b915 (patch)
treedea855c5e1b16c7284fd7d096e2320e1d20aa6d7 /rpt.c
parentdec3392af2c5eff92c9dd702bd324feafc979d3f (diff)
global variables not static
Diffstat (limited to 'rpt.c')
-rw-r--r--rpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpt.c b/rpt.c
index c72aeab..b6d65be 100644
--- a/rpt.c
+++ b/rpt.c
@@ -17,10 +17,10 @@
/* Clone of stdin. Used to perform lseek(2) calls between each child
process. */
-static FILE *stdin_clone;
+FILE *stdin_clone;
/* File descriptor associated to the clone of stdin. */
-static int clone_fd;
+int clone_fd;
void
print_usage(FILE *output)