diff options
author | ed <ed@FreeBSD.org> | 2011-11-06 18:49:41 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2011-11-06 18:49:41 +0000 |
commit | fb0088d7d03a3ea8e345fa7da1cdbf560f49d313 (patch) | |
tree | a78362df58b4541db9830fc981e9e5278acf700b /usr.bin/lam | |
parent | b9deaeaf5165db1590f1d5bed3cbaffdcc221ba3 (diff) | |
download | FreeBSD-src-fb0088d7d03a3ea8e345fa7da1cdbf560f49d313.zip FreeBSD-src-fb0088d7d03a3ea8e345fa7da1cdbf560f49d313.tar.gz |
Mark global functions and/or variables in lam(1) static where possible.
This allows compilers and static analyzers to more thorough analysis.
Diffstat (limited to 'usr.bin/lam')
-rw-r--r-- | usr.bin/lam/lam.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/lam/lam.c b/usr.bin/lam/lam.c index 9c36a49..60d1c52 100644 --- a/usr.bin/lam/lam.c +++ b/usr.bin/lam/lam.c @@ -55,7 +55,7 @@ __FBSDID("$FreeBSD$"); #define MAXOFILES 20 #define BIGBUFSIZ 5 * BUFSIZ -struct openfile { /* open file structure */ +static struct openfile { /* open file structure */ FILE *fp; /* file pointer */ short eof; /* eof flag */ short pad; /* pad flag for missing columns */ @@ -64,10 +64,10 @@ struct openfile { /* open file structure */ const char *format; /* printf(3) style string spec. */ } input[MAXOFILES]; -int morefiles; /* set by getargs(), changed by gatherline() */ -int nofinalnl; /* normally append \n to each output line */ -char line[BIGBUFSIZ]; -char *linep; +static int morefiles; /* set by getargs(), changed by gatherline() */ +static int nofinalnl; /* normally append \n to each output line */ +static char line[BIGBUFSIZ]; +static char *linep; static char *gatherline(struct openfile *); static void getargs(char *[]); |