Pull in <sys/user.h> before <sys/syscall*.h>
authorguenther <guenther@openbsd.org>
Sun, 11 May 2014 00:05:38 +0000 (00:05 +0000)
committerguenther <guenther@openbsd.org>
Sun, 11 May 2014 00:05:38 +0000 (00:05 +0000)
sys/arch/arm/arm/syscall.c
sys/arch/hppa64/hppa64/trap.c
sys/arch/mips64/mips64/trap.c

index 4e808e3..302a2b0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: syscall.c,v 1.16 2014/03/26 05:23:42 guenther Exp $   */
+/*     $OpenBSD: syscall.c,v 1.17 2014/05/11 00:05:38 guenther Exp $   */
 /*     $NetBSD: syscall.c,v 1.24 2003/11/14 19:03:17 scw Exp $ */
 
 /*-
 #include <sys/kernel.h>
 #include <sys/reboot.h>
 #include <sys/signalvar.h>
-#include <sys/syscall.h>
-#include <sys/syscall_mi.h>
 #include <sys/systm.h>
 #include <sys/proc.h>
 #include <sys/user.h>
+#include <sys/syscall.h>
+#include <sys/syscall_mi.h>
 
 #include <uvm/uvm_extern.h>
 
index 86e6a7e..c21b9cc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: trap.c,v 1.37 2014/05/10 05:33:00 guenther Exp $      */
+/*     $OpenBSD: trap.c,v 1.38 2014/05/11 00:05:38 guenther Exp $      */
 
 /*
  * Copyright (c) 2005 Michael Shalayeff
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/syscall.h>
-#include <sys/syscall_mi.h>
 #include <sys/proc.h>
 #include <sys/signalvar.h>
 #include <sys/user.h>
+#include <sys/syscall.h>
+#include <sys/syscall_mi.h>
 
 #include <uvm/uvm_extern.h>
 
index d78a525..d7c4e16 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: trap.c,v 1.95 2014/05/10 22:25:16 jasper Exp $        */
+/*     $OpenBSD: trap.c,v 1.96 2014/05/11 00:05:38 guenther Exp $      */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -49,9 +49,9 @@
 #include <sys/proc.h>
 #include <sys/kernel.h>
 #include <sys/signalvar.h>
+#include <sys/user.h>
 #include <sys/syscall.h>
 #include <sys/syscall_mi.h>
-#include <sys/user.h>
 #include <sys/buf.h>
 #include <sys/device.h>
 #ifdef PTRACE