diff options
author | bde <bde@FreeBSD.org> | 2004-06-20 00:33:14 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2004-06-20 00:33:14 +0000 |
commit | 8f6039173cb78293ba2e4d1500060392e14ac608 (patch) | |
tree | 496384fa581b1d2c227eabe65bf6d31a11de6a83 | |
parent | d310f73349e6d00117d42daae0edecb5a2400739 (diff) | |
download | FreeBSD-src-8f6039173cb78293ba2e4d1500060392e14ac608.zip FreeBSD-src-8f6039173cb78293ba2e4d1500060392e14ac608.tar.gz |
Include <sys/_lock.h>'s prerequisite <sys/queue.h> before including the
former, not after.
-rw-r--r-- | sys/i386/include/pmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/include/pmap.h b/sys/i386/include/pmap.h index 7c6d759..a933d52 100644 --- a/sys/i386/include/pmap.h +++ b/sys/i386/include/pmap.h @@ -135,9 +135,9 @@ #ifndef LOCORE +#include <sys/queue.h> #include <sys/_lock.h> #include <sys/_mutex.h> -#include <sys/queue.h> #ifdef PAE |