Make global variables static

Remove WARNS from Makefile
This commit is contained in:
Baptiste Daroussin 2015-06-06 12:39:00 +00:00
parent 66a86d242f
commit 1fbc22f5ed
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284063
2 changed files with 3 additions and 5 deletions

View File

@ -3,6 +3,4 @@
PROG= mkstr
WARNS?= 2
.include <bsd.prog.mk>

View File

@ -76,8 +76,8 @@ __FBSDID("$FreeBSD$");
* existing error message file for recompilation of single routines.
*/
FILE *mesgread, *mesgwrite;
char name[100], *np;
static FILE *mesgread, *mesgwrite;
static char name[100], *np;
void copystr(void);
int fgetNUL(char *, int, FILE *);
@ -267,7 +267,7 @@ inithash(void)
#define NBUCKETS 511
struct hash {
static struct hash {
long hval;
unsigned hpt;
struct hash *hnext;