summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2006-01-02 16:29:53 +0000
committermillert <millert@openbsd.org>2006-01-02 16:29:53 +0000
commit0181b541f3d8b6ca0062d54abe17c666f1b74d77 (patch)
treee6cf31c87d267b7472bb5376cf244b6a4ccadde8
parent#include <signal.h>, not <sys/signal.h> (diff)
downloadwireguard-openbsd-0181b541f3d8b6ca0062d54abe17c666f1b74d77.tar.xz
wireguard-openbsd-0181b541f3d8b6ca0062d54abe17c666f1b74d77.zip
#include <signal.h>, not <sys/signal.h>
-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>