diff options
author | 2016-02-22 07:50:37 +0000 | |
---|---|---|
committer | 2016-02-22 07:50:37 +0000 | |
commit | 0093c972c1ac96c2b18a6c1453e7485655a90e7e (patch) | |
tree | 476a1a8bfee67365bbb9f2be4d3049e408799597 | |
parent | Move #include <sys/mutex.h> from pmap.c to pmap.h, like every other archs (diff) | |
download | wireguard-openbsd-0093c972c1ac96c2b18a6c1453e7485655a90e7e.tar.xz wireguard-openbsd-0093c972c1ac96c2b18a6c1453e7485655a90e7e.zip |
put mutex.h lower
-rw-r--r-- | sys/arch/alpha/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/pmap.h b/sys/arch/alpha/include/pmap.h index 4b2c493960b..763a372ec8b 100644 --- a/sys/arch/alpha/include/pmap.h +++ b/sys/arch/alpha/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.38 2016/02/22 07:13:47 landry Exp $ */ +/* $OpenBSD: pmap.h,v 1.39 2016/02/22 07:50:37 deraadt Exp $ */ /* $NetBSD: pmap.h,v 1.37 2000/11/19 03:16:35 thorpej Exp $ */ /*- @@ -71,11 +71,11 @@ #define _PMAP_MACHINE_ #include <machine/pte.h> -#include <sys/mutex.h> #ifdef _KERNEL #include <sys/queue.h> +#include <sys/mutex.h> /* * Machine-dependent virtual memory state. |