summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-05-11 00:05:39 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-05-11 00:05:39 +0000
commitf8ea8928cfa6faf8b5682dc020c21fe7bbb5d6c2 (patch)
treead7bcb8f46712c278ab14c683a8a6ce480a94ad6
parent79c7f205cb6a7fcc686a93f7a602962b46491b96 (diff)
Pull in <sys/user.h> before <sys/syscall*.h>
-rw-r--r--sys/arch/arm/arm/syscall.c6
-rw-r--r--sys/arch/hppa64/hppa64/trap.c6
-rw-r--r--sys/arch/mips64/mips64/trap.c4
3 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/arm/arm/syscall.c b/sys/arch/arm/arm/syscall.c
index 4e808e329cf..302a2b01baf 100644
--- a/sys/arch/arm/arm/syscall.c
+++ b/sys/arch/arm/arm/syscall.c
@@ -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 $ */
/*-
@@ -77,11 +77,11 @@
#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>
diff --git a/sys/arch/hppa64/hppa64/trap.c b/sys/arch/hppa64/hppa64/trap.c
index 86e6a7e4e31..c21b9cca737 100644
--- a/sys/arch/hppa64/hppa64/trap.c
+++ b/sys/arch/hppa64/hppa64/trap.c
@@ -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
@@ -21,11 +21,11 @@
#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>
diff --git a/sys/arch/mips64/mips64/trap.c b/sys/arch/mips64/mips64/trap.c
index d78a525c13d..d7c4e16c7f8 100644
--- a/sys/arch/mips64/mips64/trap.c
+++ b/sys/arch/mips64/mips64/trap.c
@@ -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