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 Schouten 2011-11-06 18:50:26 +00:00
parent 558b00f5a1
commit 94cd938578
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=227245

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)