diff options
author | Jim Meyering <jim@meyering.net> | 1992-11-01 06:50:15 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1992-11-01 06:50:15 +0000 |
commit | cf5cedb71a8ee923d78d3f66e52ecddbf7a8d994 (patch) | |
tree | f17fae9aa7c21eeab8cec5cacb1464152c08bd98 /src/expr.c | |
parent | ccbd1d7dc5189f4637468a8136f672e60ee0e531 (diff) | |
download | coreutils-cf5cedb71a8ee923d78d3f66e52ecddbf7a8d994.tar.xz |
Make file-scope variable static.
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index db9586922..61a6c091d 100644 --- a/src/expr.c +++ b/src/expr.c @@ -62,7 +62,7 @@ struct valinfo typedef struct valinfo VALUE; /* The arguments given to the program, minus the program name. */ -char **args; +static char **args; /* The name this program was run with. */ char *program_name; |