summaryrefslogtreecommitdiff
path: root/src/tty.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1992-11-01 07:01:40 +0000
committerJim Meyering <jim@meyering.net>1992-11-01 07:01:40 +0000
commitf33e06711c51330972e2adf07d21a4e69c8f44f6 (patch)
tree58205cdd929d7e9c5dacb7092ecd391f21bc6be5 /src/tty.c
parent505e28b60627469b360fc07f57e9709955614e8a (diff)
downloadcoreutils-f33e06711c51330972e2adf07d21a4e69c8f44f6.tar.xz
Make still more file-scope variables `static'.
Diffstat (limited to 'src/tty.c')
-rw-r--r--src/tty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tty.c b/src/tty.c
index 056c7da8d..8396aa930 100644
--- a/src/tty.c
+++ b/src/tty.c
@@ -32,9 +32,9 @@ void usage ();
char *program_name;
/* If nonzero, return an exit status but produce no output. */
-int silent;
+static int silent;
-struct option longopts[] =
+static struct option longopts[] =
{
{"silent", 0, NULL, 's'},
{"quiet", 0, NULL, 's'},