these files do not need sys/param.h
authorderaadt <deraadt@openbsd.org>
Fri, 17 Sep 2021 15:20:21 +0000 (15:20 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 17 Sep 2021 15:20:21 +0000 (15:20 +0000)
lib/librthread/rthread_np.c
lib/librthread/rthread_stack.c

index 0b3f821..8570f31 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rthread_np.c,v 1.22 2020/10/12 22:08:34 deraadt Exp $ */
+/*     $OpenBSD: rthread_np.c,v 1.23 2021/09/17 15:20:21 deraadt Exp $ */
 /*
  * Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org>
  * Copyright (c) 2005 Otto Moerbeek <otto@openbsd.org>
@@ -17,7 +17,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h>
+#include <sys/types.h>
 #include <sys/time.h>
 #include <sys/lock.h>
 #include <sys/resource.h>
index 37d2eea..5daf09d 100644 (file)
@@ -1,8 +1,8 @@
-/* $OpenBSD: rthread_stack.c,v 1.19 2018/02/11 04:12:22 deraadt Exp $ */
+/* $OpenBSD: rthread_stack.c,v 1.20 2021/09/17 15:20:21 deraadt Exp $ */
 
 /* PUBLIC DOMAIN: No Rights Reserved. Marco S Hyman <marc@snafu.org> */
 
-#include <sys/param.h>
+#include <sys/types.h>
 #include <sys/mman.h>
 
 #include <errno.h>