diff options
author | bmilekic <bmilekic@FreeBSD.org> | 2002-08-14 16:34:13 +0000 |
---|---|---|
committer | bmilekic <bmilekic@FreeBSD.org> | 2002-08-14 16:34:13 +0000 |
commit | 1ea9bfcd52683a74c631f8e698775984dd73a640 (patch) | |
tree | e4f35d52050281b837b4d309827bb81235fc0c1d /usr.bin/fstat | |
parent | 63aa364919df8b13e4af47d16498e3ef7e80ef92 (diff) | |
download | FreeBSD-src-1ea9bfcd52683a74c631f8e698775984dd73a640.zip FreeBSD-src-1ea9bfcd52683a74c631f8e698775984dd73a640.tar.gz |
Unbreak building of fstat following version 1.23 of
src/sys/ufs/ufs/quota.h by including mount.h before ufs/quota.h.
Diffstat (limited to 'usr.bin/fstat')
-rw-r--r-- | usr.bin/fstat/fstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c index 0a51c59..4d1c10f 100644 --- a/usr.bin/fstat/fstat.c +++ b/usr.bin/fstat/fstat.c @@ -64,10 +64,10 @@ __FBSDID("$FreeBSD$"); #define _KERNEL #include <sys/conf.h> #include <sys/file.h> +#include <sys/mount.h> #include <ufs/ufs/quota.h> #include <ufs/ufs/inode.h> #include <fs/devfs/devfs.h> -#include <sys/mount.h> #undef _KERNEL #include <nfs/nfsproto.h> #include <nfs/rpcv2.h> |