From 523f2de65f9cd04c2d116ef7aa1172af99c1b915 Mon Sep 17 00:00:00 2001 From: Tristan Riehs Date: Sat, 11 Nov 2023 20:50:07 +0100 Subject: global variables not static --- rpt.c | 4 ++-- 1 file 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) -- cgit v1.2.3