A couple commands don't need sys/param.h, but they do need sys/signal.h
authorderaadt <deraadt@openbsd.org>
Wed, 1 Sep 2021 15:54:40 +0000 (15:54 +0000)
committerderaadt <deraadt@openbsd.org>
Wed, 1 Sep 2021 15:54:40 +0000 (15:54 +0000)
usr.bin/ktrace/ktrace.c
usr.bin/ktrace/subr.c
usr.bin/pkill/pkill.c
usr.sbin/snmpd/mib.c

index f87a16f..56fb8da 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ktrace.c,v 1.37 2020/07/16 17:47:41 tedu Exp $        */
+/*     $OpenBSD: ktrace.c,v 1.38 2021/09/01 15:54:40 deraadt Exp $     */
 /*     $NetBSD: ktrace.c,v 1.4 1995/08/31 23:01:44 jtc Exp $   */
 
 /*-
@@ -31,6 +31,7 @@
  */
 
 #include <sys/param.h> /* MAXCOMLEN */
+#include <sys/types.h>
 #include <sys/signal.h>
 #include <sys/stat.h>
 #include <sys/time.h>
@@ -41,6 +42,7 @@
 #include <errno.h>
 #include <fcntl.h>
 #include <stdlib.h>
+#include <limits.h>
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
index 02e394a..cfc2304 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: subr.c,v 1.14 2018/04/26 12:42:51 guenther Exp $      */
+/*     $OpenBSD: subr.c,v 1.15 2021/09/01 15:54:40 deraadt Exp $       */
 /*     $NetBSD: subr.c,v 1.6 1995/08/31 23:01:45 jtc Exp $     */
 
 /*-
@@ -32,6 +32,7 @@
 
 #include <sys/param.h> /* MAXCOMLEN */
 #include <sys/time.h>
+#include <sys/signal.h>
 #include <sys/ktrace.h>
 
 #include "ktrace.h"
index 8dc98cc..c9ed8cc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pkill.c,v 1.42 2019/12/16 19:21:17 guenther Exp $     */
+/*     $OpenBSD: pkill.c,v 1.43 2021/09/01 15:54:40 deraadt Exp $      */
 /*     $NetBSD: pkill.c,v 1.5 2002/10/27 11:49:34 kleink Exp $ */
 
 /*-
@@ -30,9 +30,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <sys/param.h> /* MAXCOMLEN */
 #include <sys/types.h>
 #include <sys/sysctl.h>
+#include <sys/signal.h>
 #include <sys/proc.h>
 #include <sys/queue.h>
 #include <sys/stat.h>
index 663658d..a157064 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mib.c,v 1.101 2020/09/06 16:12:23 jan Exp $   */
+/*     $OpenBSD: mib.c,v 1.102 2021/09/01 15:54:40 deraadt Exp $       */
 
 /*
  * Copyright (c) 2012 Joel Knight <joel@openbsd.org>
@@ -17,7 +17,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h> /* MAXCOMLEN */
+#include <sys/types.h>
+#include <sys/signal.h>
 #include <sys/queue.h>
 #include <sys/proc.h>
 #include <sys/stat.h>