diff options
author | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2023-11-11 20:50:07 +0100 |
---|---|---|
committer | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2023-11-11 20:50:07 +0100 |
commit | 523f2de65f9cd04c2d116ef7aa1172af99c1b915 (patch) | |
tree | dea855c5e1b16c7284fd7d096e2320e1d20aa6d7 | |
parent | dec3392af2c5eff92c9dd702bd324feafc979d3f (diff) |
global variables not static
-rw-r--r-- | rpt.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |