diff options
author | 2001-09-18 00:34:49 +0000 | |
---|---|---|
committer | 2001-09-18 00:34:49 +0000 | |
commit | d4c5881276b7658e4e005f4abdd1033619ed61e0 (patch) | |
tree | 7452aafbfb0b391eb22f7fde83021e6e5d57c429 | |
parent | cosmetic fixes from NetBSD (diff) | |
download | wireguard-openbsd-d4c5881276b7658e4e005f4abdd1033619ed61e0.tar.xz wireguard-openbsd-d4c5881276b7658e4e005f4abdd1033619ed61e0.zip |
Reorder includes. (ext2fs_extern.h needs ufs/inode.h)
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_subr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_subr.c b/sys/ufs/ext2fs/ext2fs_subr.c index f5094aeff8f..cdb95040224 100644 --- a/sys/ufs/ext2fs/ext2fs_subr.c +++ b/sys/ufs/ext2fs/ext2fs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_subr.c,v 1.4 2001/06/23 02:07:52 csapuntz Exp $ */ +/* $OpenBSD: ext2fs_subr.c,v 1.5 2001/09/18 00:34:49 art Exp $ */ /* $NetBSD: ext2fs_subr.c,v 1.1 1997/06/11 09:34:03 bouyer Exp $ */ /* @@ -40,14 +40,14 @@ #include <sys/param.h> #include <sys/systm.h> -#include <ufs/ext2fs/ext2fs.h> -#include <ufs/ext2fs/ext2fs_extern.h> - -#ifdef _KERNEL #include <sys/vnode.h> #include <sys/buf.h> #include <ufs/ufs/quota.h> #include <ufs/ufs/inode.h> +#include <ufs/ext2fs/ext2fs.h> +#include <ufs/ext2fs/ext2fs_extern.h> + +#ifdef _KERNEL /* * Return buffer with the contents of block "offset" from the beginning of |