Mark global functions and/or variables in which(1) static where possible.

This allows compilers and static analyzers to more thorough analysis.
This commit is contained in:
ed 2011-11-06 18:50:26 +00:00
parent 90167b1812
commit 04b0cc9b2b

View File

@ -40,8 +40,8 @@ __FBSDID("$FreeBSD$");
static void usage(void);
static int print_matches(char *, char *);
int silent;
int allpaths;
static int silent;
static int allpaths;
int
main(int argc, char **argv)