diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2002-06-11 18:49:19 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2002-06-11 18:49:19 +0000 |
commit | dc517ef9f3e5b40dddfcd8b9003a313340b86edb (patch) | |
tree | b7e1336cda8ea21a35e47b09cafd5b2813ac9196 /usr.sbin/rbootd/rbootd.c | |
parent | 8307ebc7a98d338e07e4c051d912237ddb937adf (diff) |
-Wall cleanup
ok millert@, miod@
Diffstat (limited to 'usr.sbin/rbootd/rbootd.c')
-rw-r--r-- | usr.sbin/rbootd/rbootd.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.sbin/rbootd/rbootd.c b/usr.sbin/rbootd/rbootd.c index d3a955ef925..1fcac675d7f 100644 --- a/usr.sbin/rbootd/rbootd.c +++ b/usr.sbin/rbootd/rbootd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rbootd.c,v 1.13 2002/03/14 16:44:25 mpech Exp $ */ +/* $OpenBSD: rbootd.c,v 1.14 2002/06/11 18:49:18 hin Exp $ */ /* $NetBSD: rbootd.c,v 1.5 1995/10/06 05:12:17 thorpej Exp $ */ /* @@ -55,11 +55,12 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "@(#)rbootd.c 8.1 (Berkeley) 6/4/93";*/ -static char rcsid[] = "$OpenBSD: rbootd.c,v 1.13 2002/03/14 16:44:25 mpech Exp $"; +static char rcsid[] = "$OpenBSD: rbootd.c,v 1.14 2002/06/11 18:49:18 hin Exp $"; #endif /* not lint */ #include <sys/param.h> #include <sys/time.h> + #include <ctype.h> #include <err.h> #include <errno.h> @@ -70,6 +71,8 @@ static char rcsid[] = "$OpenBSD: rbootd.c,v 1.13 2002/03/14 16:44:25 mpech Exp $ #include <string.h> #include <syslog.h> #include <unistd.h> +#include <util.h> + #include "defs.h" extern char *__progname; /* from crt0.o */ |