aboutsummaryrefslogtreecommitdiff
path: root/util-linux/more.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-26 06:50:46 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-26 06:50:46 +0000
commit5c9c8b4b262806356d882d1b88b96796d0755af8 (patch)
treef7dba207288fa9ccb96b52cc51b83e1bd0d1b1cf /util-linux/more.c
parentd5cad14b11bc5a50309214d000429017eca61802 (diff)
downloadbusybox-w32-5c9c8b4b262806356d882d1b88b96796d0755af8.tar.gz
busybox-w32-5c9c8b4b262806356d882d1b88b96796d0755af8.tar.bz2
busybox-w32-5c9c8b4b262806356d882d1b88b96796d0755af8.zip
Make cin be static
Diffstat (limited to 'util-linux/more.c')
-rw-r--r--util-linux/more.c2
1 files changed, 1 insertions, 1 deletions
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
50FILE *cin; 50static FILE *cin;
51 51
52static struct termios initial_settings, new_settings; 52static struct termios initial_settings, new_settings;
53 53