From 144b82c6c22abaa2a3247dc33b286662a7aa90d9 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 1 Nov 1992 03:30:09 +0000 Subject: Give most file-scope variables the static attribute. --- src/mkdir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mkdir.c') diff --git a/src/mkdir.c b/src/mkdir.c index 7a5d08a43..c60c5460f 100644 --- a/src/mkdir.c +++ b/src/mkdir.c @@ -38,12 +38,12 @@ void error (); void usage (); /* If nonzero, ensure that a path exists. */ -int path_mode; +static int path_mode; /* The name this program was run with. */ char *program_name; -struct option longopts[] = +static struct option longopts[] = { {"mode", 1, NULL, 'm'}, {"path", 0, &path_mode, 1}, -- cgit v1.2.3-54-g00ecf