summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2006-01-02 16:29:54 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2006-01-02 16:29:54 +0000
commit0a59b4889474923a98dd460e5aedf956e767b190 (patch)
tree921678bb11f308968d13ecc41a334ac6fc6e4a5c /usr.sbin
parentd192b9cf57ae69c785c1936d0c8c435683250ca8 (diff)
#include <signal.h>, not <sys/signal.h>
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/rwhod/rwhod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rwhod/rwhod.c b/usr.sbin/rwhod/rwhod.c
index 728ab2fe987..38ad526f53d 100644
--- a/usr.sbin/rwhod/rwhod.c
+++ b/usr.sbin/rwhod/rwhod.c
@@ -35,13 +35,12 @@ static char copyright[] =
#ifndef lint
/*static char sccsid[] = "@(#)rwhod.c 8.1 (Berkeley) 6/6/93";*/
-static char rcsid[] = "$OpenBSD: rwhod.c,v 1.30 2004/09/16 08:55:00 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: rwhod.c,v 1.31 2006/01/02 16:29:53 millert Exp $";
#endif /* not lint */
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>
-#include <sys/signal.h>
#include <sys/ioctl.h>
#include <sys/sysctl.h>
@@ -58,6 +57,7 @@ static char rcsid[] = "$OpenBSD: rwhod.c,v 1.30 2004/09/16 08:55:00 deraadt Exp
#include <poll.h>
#include <netdb.h>
#include <paths.h>
+#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>