summaryrefslogtreecommitdiff
path: root/src/tee.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/tee.c
parent505e28b60627469b360fc07f57e9709955614e8a (diff)
downloadcoreutils-f33e06711c51330972e2adf07d21a4e69c8f44f6.tar.xz
Make still more file-scope variables `static'.
Diffstat (limited to 'src/tee.c')
-rw-r--r--src/tee.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tee.c b/src/tee.c
index 721014b5d..ca8f53a5f 100644
--- a/src/tee.c
+++ b/src/tee.c
@@ -29,15 +29,15 @@ void error ();
void xwrite ();
/* If nonzero, append to output files rather than truncating them. */
-int append;
+static int append;
/* If nonzero, ignore interrupts. */
-int ignore_interrupts;
+static int ignore_interrupts;
/* The name that this program was run with. */
char *program_name;
-struct option long_options[] =
+static struct option long_options[] =
{
{"append", 0, NULL, 'a'},
{"ignore-interrupts", 0, NULL, 'i'},