diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-09-18 00:34:50 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-09-18 00:34:50 +0000 |
commit | 23613192accc7b8d0214024c6fd928576118cc46 (patch) | |
tree | a339cd303e9a28e214f2e29e661e93d17b9940d2 | |
parent | ddc4fcb71ce5cfbb920d1727f42f0d0d4dec3293 (diff) |
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 |