Pull in <sys/time.h> for struct timespec
authorguenther <guenther@openbsd.org>
Sat, 27 Aug 2016 01:56:07 +0000 (01:56 +0000)
committerguenther <guenther@openbsd.org>
Sat, 27 Aug 2016 01:56:07 +0000 (01:56 +0000)
<sys/fcntl.h> shouldn't be used by userspace; this already uses <fcntl.h>

ok deraadt@

sbin/reboot/reboot.c

index eb28ad1..266e6df 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: reboot.c,v 1.34 2015/01/16 06:40:00 deraadt Exp $     */
+/*     $OpenBSD: reboot.c,v 1.35 2016/08/27 01:56:07 guenther Exp $    */
 /*     $NetBSD: reboot.c,v 1.8 1995/10/05 05:36:22 mycroft Exp $       */
 
 /*
@@ -32,8 +32,8 @@
 
 #include <sys/types.h>
 #include <sys/reboot.h>
-#include <sys/fcntl.h>
 #include <sys/sysctl.h>
+#include <sys/time.h>
 #include <sys/wait.h>
 #include <machine/cpu.h>
 #include <signal.h>