Add missing #include

Bump WARNS level to 2

PR:		bin/71668
Submitted by:	Dan Lukes <dan@obluda.cz>
MFC after:	3 days
This commit is contained in:
emax 2004-09-14 20:04:33 +00:00
parent e32c315aa7
commit 6f238d1359
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@
PROG= hcsecd
MAN= hcsecd.8 hcsecd.conf.5
SRCS= hcsecd.c lexer.l parser.y
WARNS?= 1
WARNS?= 2
CFLAGS+= -I${.CURDIR}
DPADD= ${LIBBLUETOOTH}

View File

@ -39,6 +39,7 @@
#include <stdarg.h>
#include <string.h>
#include <syslog.h>
#include <unistd.h>
#include "hcsecd.h"
int yyparse (void);