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/linux/linux_ioctl.c | |
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/linux/linux_ioctl.c')
-rw-r--r-- | sys/compat/linux/linux_ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_ioctl.c b/sys/compat/linux/linux_ioctl.c index 083548e..9979a0c 100644 --- a/sys/compat/linux/linux_ioctl.c +++ b/sys/compat/linux/linux_ioctl.c @@ -26,6 +26,8 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "opt_compat.h" + #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); @@ -62,8 +64,6 @@ __FBSDID("$FreeBSD$"); #include <net/if_dl.h> #include <net/if_types.h> -#include "opt_compat.h" - #ifdef COMPAT_LINUX32 #include <machine/../linux32/linux.h> #include <machine/../linux32/linux32_proto.h> |