diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-26 06:50:46 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-26 06:50:46 +0000 |
commit | 5c9c8b4b262806356d882d1b88b96796d0755af8 (patch) | |
tree | f7dba207288fa9ccb96b52cc51b83e1bd0d1b1cf | |
parent | d5cad14b11bc5a50309214d000429017eca61802 (diff) | |
download | busybox-w32-5c9c8b4b262806356d882d1b88b96796d0755af8.tar.gz busybox-w32-5c9c8b4b262806356d882d1b88b96796d0755af8.tar.bz2 busybox-w32-5c9c8b4b262806356d882d1b88b96796d0755af8.zip |
Make cin be static
-rw-r--r-- | coreutils/ls.c | 2 | ||||
-rw-r--r-- | ls.c | 2 | ||||
-rw-r--r-- | more.c | 2 | ||||
-rw-r--r-- | util-linux/more.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index 215c58bb6..2df41d07f 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -198,7 +198,7 @@ unsigned long ls_disp_hr = KILOBYTE; | |||
198 | # define getTermSettings(fd,argp) tcgetattr(fd, argp); | 198 | # define getTermSettings(fd,argp) tcgetattr(fd, argp); |
199 | # endif | 199 | # endif |
200 | 200 | ||
201 | FILE *cin; | 201 | static FILE *cin; |
202 | 202 | ||
203 | static struct termios initial_settings, new_settings; | 203 | static struct termios initial_settings, new_settings; |
204 | 204 | ||
@@ -198,7 +198,7 @@ unsigned long ls_disp_hr = KILOBYTE; | |||
198 | # define getTermSettings(fd,argp) tcgetattr(fd, argp); | 198 | # define getTermSettings(fd,argp) tcgetattr(fd, argp); |
199 | # endif | 199 | # endif |
200 | 200 | ||
201 | FILE *cin; | 201 | static FILE *cin; |
202 | 202 | ||
203 | static struct termios initial_settings, new_settings; | 203 | static struct termios initial_settings, new_settings; |
204 | 204 | ||
@@ -47,7 +47,7 @@ | |||
47 | # define getTermSettings(fd,argp) tcgetattr(fd, argp); | 47 | # define getTermSettings(fd,argp) tcgetattr(fd, argp); |
48 | # endif | 48 | # endif |
49 | 49 | ||
50 | FILE *cin; | 50 | static FILE *cin; |
51 | 51 | ||
52 | static struct termios initial_settings, new_settings; | 52 | static struct termios initial_settings, new_settings; |
53 | 53 | ||
diff --git a/util-linux/more.c b/util-linux/more.c index 538708caa..03cb3bc2b 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -47,7 +47,7 @@ | |||
47 | # define getTermSettings(fd,argp) tcgetattr(fd, argp); | 47 | # define getTermSettings(fd,argp) tcgetattr(fd, argp); |
48 | # endif | 48 | # endif |
49 | 49 | ||
50 | FILE *cin; | 50 | static FILE *cin; |
51 | 51 | ||
52 | static struct termios initial_settings, new_settings; | 52 | static struct termios initial_settings, new_settings; |
53 | 53 | ||