Add back <sys/param.h>; it's needed for MACHINE_STACK_GROWS_UP.
authorkettenis <kettenis@openbsd.org>
Sat, 24 Jan 2015 10:35:33 +0000 (10:35 +0000)
committerkettenis <kettenis@openbsd.org>
Sat, 24 Jan 2015 10:35:33 +0000 (10:35 +0000)
ok millert@, tobiasu@

lib/librthread/rthread_np.c
lib/librthread/rthread_stack.c

index 828aadf..656db4f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rthread_np.c,v 1.16 2015/01/16 16:48:52 deraadt Exp $ */
+/*     $OpenBSD: rthread_np.c,v 1.17 2015/01/24 10:35:33 kettenis Exp $        */
 /*
  * Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org>
  * Copyright (c) 2005 Otto Moerbeek <otto@openbsd.org>
@@ -17,6 +17,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <sys/param.h>
 #include <sys/time.h>
 #include <sys/lock.h>
 #include <sys/resource.h>
index 19ea890..fbaa1a9 100644 (file)
@@ -1,8 +1,9 @@
-/* $OpenBSD: rthread_stack.c,v 1.13 2015/01/16 16:48:52 deraadt Exp $ */
+/* $OpenBSD: rthread_stack.c,v 1.14 2015/01/24 10:35:33 kettenis Exp $ */
 /* $snafu: rthread_stack.c,v 1.12 2005/01/11 02:45:28 marc Exp $ */
 
 /* PUBLIC DOMAIN: No Rights Reserved. Marco S Hyman <marc@snafu.org> */
 
+#include <sys/param.h>
 #include <sys/mman.h>
 
 #include <errno.h>