diff options
author | julian <julian@FreeBSD.org> | 2008-08-25 04:55:29 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2008-08-25 04:55:29 +0000 |
commit | 18137ef2519ed43330c69e1969ef47d9a920b9be (patch) | |
tree | 21cfdf13089e57182b159a74ade4eeb1962cd62d /sys/compat/linprocfs | |
parent | e3fb70f7f01706e9203032398e79ab5b0e591af4 (diff) | |
download | FreeBSD-src-18137ef2519ed43330c69e1969ef47d9a920b9be.zip FreeBSD-src-18137ef2519ed43330c69e1969ef47d9a920b9be.tar.gz |
All opt_x.h includes go at the top of other includes.
Diffstat (limited to 'sys/compat/linprocfs')
-rw-r--r-- | sys/compat/linprocfs/linprocfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/compat/linprocfs/linprocfs.c b/sys/compat/linprocfs/linprocfs.c index f5055b1..c13400d 100644 --- a/sys/compat/linprocfs/linprocfs.c +++ b/sys/compat/linprocfs/linprocfs.c @@ -39,6 +39,8 @@ * @(#)procfs_status.c 8.4 (Berkeley) 6/15/94 */ +#include "opt_compat.h" + #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); @@ -89,7 +91,6 @@ __FBSDID("$FreeBSD$"); #include <machine/md_var.h> #endif /* __i386__ || __amd64__ */ -#include "opt_compat.h" #ifdef COMPAT_LINUX32 /* XXX */ #include <machine/../linux32/linux.h> #else |