summaryrefslogtreecommitdiffstats
path: root/sys/isofs
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2017-12-30 23:08:29 +0000
committerguenther <guenther@openbsd.org>2017-12-30 23:08:29 +0000
commitc0cd3489929d3f3bbb2b56e1de3bff68c64db8d2 (patch)
treeb43d36e853bd7d7ae68231e1d6dc41abde910157 /sys/isofs
parentDelete unnecessary <sys/file.h> includes (diff)
downloadwireguard-openbsd-c0cd3489929d3f3bbb2b56e1de3bff68c64db8d2.tar.xz
wireguard-openbsd-c0cd3489929d3f3bbb2b56e1de3bff68c64db8d2.zip
Don't pull in <sys/file.h> just to get fcntl.h
ok deraadt@ krw@
Diffstat (limited to 'sys/isofs')
-rw-r--r--sys/isofs/cd9660/cd9660_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c
index 1f4bb0e55a4..efe2e4abdb5 100644
--- a/sys/isofs/cd9660/cd9660_vfsops.c
+++ b/sys/isofs/cd9660/cd9660_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cd9660_vfsops.c,v 1.85 2017/12/11 05:27:40 deraadt Exp $ */
+/* $OpenBSD: cd9660_vfsops.c,v 1.86 2017/12/30 23:08:29 guenther Exp $ */
/* $NetBSD: cd9660_vfsops.c,v 1.26 1997/06/13 15:38:58 pk Exp $ */
/*-
@@ -47,7 +47,7 @@
#include <sys/specdev.h>
#include <sys/mount.h>
#include <sys/buf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
#include <sys/disklabel.h>
#include <sys/ioctl.h>
#include <sys/cdio.h>