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/chown.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/chown.c') diff --git a/src/chown.c b/src/chown.c index 2bc6987af..dca9ba6de 100644 --- a/src/chown.c +++ b/src/chown.c @@ -64,24 +64,24 @@ void usage (); char *program_name; /* If nonzero, change the ownership of directories recursively. */ -int recurse; +static int recurse; /* If nonzero, force silence (no error messages). */ -int force_silent; +static int force_silent; /* If nonzero, describe the files we process. */ -int verbose; +static int verbose; /* If nonzero, describe only owners or groups that change. */ -int changes_only; +static int changes_only; /* The name of the user to which ownership of the files is being given. */ -char *username; +static char *username; /* The name of the group to which ownership of the files is being given. */ -char *groupname; +static char *groupname; -struct option long_options[] = +static struct option long_options[] = { {"recursive", 0, 0, 'R'}, {"changes", 0, 0, 'c'}, -- cgit v1.2.3-70-g09d2