diff options
author | 2014-05-10 21:58:56 +0000 | |
---|---|---|
committer | 2014-05-10 21:58:56 +0000 | |
commit | 5ab06ed02463d72d6630240c3cfe86eddf522b9f (patch) | |
tree | 318ceb1d6d685c033f3a38074e24100b29df3e28 | |
parent | fix typo in function prototype (diff) | |
download | wireguard-openbsd-5ab06ed02463d72d6630240c3cfe86eddf522b9f.tar.xz wireguard-openbsd-5ab06ed02463d72d6630240c3cfe86eddf522b9f.zip |
sigh, another case of user.h before syscall_mi.h
-rw-r--r-- | sys/arch/hppa/hppa/trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/hppa/trap.c b/sys/arch/hppa/hppa/trap.c index 130c9f1f350..0278efc9211 100644 --- a/sys/arch/hppa/hppa/trap.c +++ b/sys/arch/hppa/hppa/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.132 2014/05/10 05:33:00 guenther Exp $ */ +/* $OpenBSD: trap.c,v 1.133 2014/05/10 21:58:56 deraadt Exp $ */ /* * Copyright (c) 1998-2004 Michael Shalayeff @@ -31,10 +31,10 @@ #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_mi.h> #include <uvm/uvm_extern.h> |