diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2017-12-30 23:08:30 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2017-12-30 23:08:30 +0000 |
commit | 194bb45f9b6c6ddce46f6c764ce9e52f9a70c7c6 (patch) | |
tree | 3a55d8d395672966522939a9e3d72616a6525afc /sys/ufs/ffs/ffs_vfsops.c | |
parent | 0b1bf6081fad3d2e922fc79beeb4f1e0fe81cbfe (diff) |
Don't pull in <sys/file.h> just to get fcntl.h
ok deraadt@ krw@
Diffstat (limited to 'sys/ufs/ffs/ffs_vfsops.c')
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 64af433a272..9492e50d6fd 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_vfsops.c,v 1.170 2017/12/14 20:20:38 deraadt Exp $ */ +/* $OpenBSD: ffs_vfsops.c,v 1.171 2017/12/30 23:08:29 guenther Exp $ */ /* $NetBSD: ffs_vfsops.c,v 1.19 1996/02/09 22:22:26 christos Exp $ */ /* @@ -42,7 +42,7 @@ #include <sys/mount.h> #include <sys/buf.h> #include <sys/mbuf.h> -#include <sys/file.h> +#include <sys/fcntl.h> #include <sys/ioctl.h> #include <sys/errno.h> #include <sys/malloc.h> |