Don't pull in <sys/file.h> just to get fcntl.h
authorguenther <guenther@openbsd.org>
Sat, 30 Dec 2017 23:08:29 +0000 (23:08 +0000)
committerguenther <guenther@openbsd.org>
Sat, 30 Dec 2017 23:08:29 +0000 (23:08 +0000)
ok deraadt@ krw@

40 files changed:
sys/arch/hppa/stand/mkboot/mkboot.c
sys/arch/octeon/dev/amdcf.c
sys/arch/octeon/dev/octcf.c
sys/arch/sparc64/dev/fd.c
sys/arch/sparc64/dev/sab.c
sys/dev/ata/wd.c
sys/dev/ic/com.c
sys/dev/ic/wdc.c
sys/dev/ic/z8530tty.c
sys/dev/isa/fd.c
sys/dev/isa/spkr.c
sys/dev/pcmcia/gpr.c
sys/dev/rd.c
sys/dev/sbus/magma.c
sys/dev/sbus/spif.c
sys/dev/usb/uaudio.c
sys/dev/usb/ucom.c
sys/dev/usb/ugen.c
sys/dev/usb/umidi.c
sys/dev/usb/uvideo.c
sys/dev/vnd.c
sys/isofs/cd9660/cd9660_vfsops.c
sys/kern/exec_elf.c
sys/kern/kern_acct.c
sys/kern/kern_ktrace.c
sys/kern/kern_sig.c
sys/kern/spec_vnops.c
sys/kern/tty.c
sys/kern/tty_tty.c
sys/msdosfs/msdosfs_vfsops.c
sys/net/bpf.c
sys/net/if_tun.c
sys/net/ppp_tty.c
sys/scsi/cd.c
sys/scsi/sd.c
sys/ufs/ext2fs/ext2fs_vfsops.c
sys/ufs/ext2fs/ext2fs_vnops.c
sys/ufs/ffs/ffs_vfsops.c
sys/ufs/ufs/ufs_quota.c
sys/uvm/uvm_swap.c

index 5028c42..88d71da 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mkboot.c,v 1.20 2014/10/26 10:32:30 miod Exp $        */
+/*     $OpenBSD: mkboot.c,v 1.21 2017/12/30 23:08:29 guenther Exp $    */
 
 /*
  * Copyright (c) 1990, 1993
 #include <sys/param.h>
 #include <sys/exec.h>
 #include <sys/exec_elf.h>
-#include <sys/file.h>
 #include <sys/stat.h>
 
 #include <ctype.h>
 #include <err.h>
+#include <fcntl.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
index c964dba..15d9801 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: amdcf.c,v 1.4 2017/10/24 09:36:13 jsg Exp $   */
+/*     $OpenBSD: amdcf.c,v 1.5 2017/12/30 23:08:29 guenther Exp $      */
 
 /*
  * Copyright (c) 2007, Juniper Networks, Inc.
@@ -75,7 +75,7 @@
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/conf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <sys/mutex.h>
index 70b032f..8d75504 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: octcf.c,v 1.30 2017/10/24 09:36:13 jsg Exp $ */
+/*     $OpenBSD: octcf.c,v 1.31 2017/12/30 23:08:29 guenther Exp $ */
 /*     $NetBSD: wd.c,v 1.193 1999/02/28 17:15:27 explorer Exp $ */
 
 /*
@@ -58,7 +58,7 @@
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/conf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <sys/mutex.h>
index 17a28a9..3fb2bce 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fd.c,v 1.48 2017/05/04 22:47:27 deraadt Exp $ */
+/*     $OpenBSD: fd.c,v 1.49 2017/12/30 23:08:29 guenther Exp $        */
 /*     $NetBSD: fd.c,v 1.112 2003/08/07 16:29:35 agc Exp $     */
 
 /*-
 #include <sys/systm.h>
 #include <sys/timeout.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/ioctl.h>
 #include <sys/conf.h>
 #include <sys/device.h>
index f237fd0..9d9915a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sab.c,v 1.33 2017/09/08 05:36:52 deraadt Exp $        */
+/*     $OpenBSD: sab.c,v 1.34 2017/12/30 23:08:29 guenther Exp $       */
 
 /*
  * Copyright (c) 2001 Jason L. Wright (jason@thought.net)
@@ -39,7 +39,7 @@
 #include <sys/systm.h>
 #include <sys/device.h>
 #include <sys/conf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/ioctl.h>
 #include <sys/kernel.h>
 #include <sys/proc.h>
index f70a409..aa095ac 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: wd.c,v 1.124 2017/12/14 06:21:04 deraadt Exp $ */
+/*     $OpenBSD: wd.c,v 1.125 2017/12/30 23:08:29 guenther Exp $ */
 /*     $NetBSD: wd.c,v 1.193 1999/02/28 17:15:27 explorer Exp $ */
 
 /*
@@ -62,7 +62,7 @@
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/conf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <sys/mutex.h>
index ba3dfce..e0b1087 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: com.c,v 1.163 2017/04/30 16:45:46 mpi Exp $   */
+/*     $OpenBSD: com.c,v 1.164 2017/12/30 23:08:29 guenther Exp $      */
 /*     $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */
 
 /*
@@ -68,7 +68,7 @@
 #include <sys/selinfo.h>
 #include <sys/tty.h>
 #include <sys/conf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/uio.h>
 #include <sys/kernel.h>
 #include <sys/syslog.h>
index 3584b55..8d3eb5b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: wdc.c,v 1.133 2017/09/26 22:12:04 mikeb Exp $ */
+/*     $OpenBSD: wdc.c,v 1.134 2017/12/30 23:08:29 guenther Exp $      */
 /*     $NetBSD: wdc.c,v 1.68 1999/06/23 19:00:17 bouyer Exp $  */
 /*
  * Copyright (c) 1998, 2001 Manuel Bouyer.  All rights reserved.
@@ -2032,7 +2032,7 @@ wdcbit_bucket(struct channel_softc *chp, int size)
 
 
 #include <sys/ataio.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 
 int wdc_ioc_ata_cmd(struct ata_drive_datas *, atareq_t *);
 
index d9731e4..08d5136 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: z8530tty.c,v 1.28 2017/04/30 13:04:49 mpi Exp $       */
+/*     $OpenBSD: z8530tty.c,v 1.29 2017/12/30 23:08:29 guenther Exp $  */
 /*     $NetBSD: z8530tty.c,v 1.77 2001/05/30 15:24:24 lukem Exp $      */
 
 /*-
 #include <sys/proc.h>
 #include <sys/device.h>
 #include <sys/conf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/ioctl.h>
 #include <sys/malloc.h>
 #include <sys/tty.h>
index 0767e21..4ee21c1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fd.c,v 1.105 2017/09/03 20:03:58 sf Exp $     */
+/*     $OpenBSD: fd.c,v 1.106 2017/12/30 23:08:29 guenther Exp $       */
 /*     $NetBSD: fd.c,v 1.90 1996/05/12 23:12:03 mycroft Exp $  */
 
 /*-
@@ -45,7 +45,7 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/ioctl.h>
 #include <sys/device.h>
 #include <sys/disklabel.h>
index 26cc243..07311cb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: spkr.c,v 1.21 2016/03/19 11:34:22 mpi Exp $   */
+/*     $OpenBSD: spkr.c,v 1.22 2017/12/30 23:08:29 guenther Exp $      */
 /*     $NetBSD: spkr.c,v 1.1 1998/04/15 20:26:18 drochner Exp $        */
 
 /*
@@ -52,7 +52,7 @@
 #include <sys/uio.h>
 #include <sys/ioctl.h>
 #include <sys/conf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 
 #include <dev/isa/pcppivar.h>
 
index 4690279..8180ac2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: gpr.c,v 1.17 2016/03/14 23:08:06 krw Exp $    */
+/*     $OpenBSD: gpr.c,v 1.18 2017/12/30 23:08:29 guenther Exp $       */
 
 /*
  * Copyright (c) 2002, Federico G. Schwindt
@@ -39,7 +39,7 @@
 #include <sys/device.h>
 #include <sys/systm.h>
 #include <sys/conf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/ioctl.h>
 #include <sys/proc.h>
 
index 8ddd5ff..7ca19cb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rd.c,v 1.12 2015/09/11 20:43:23 dlg Exp $     */
+/*     $OpenBSD: rd.c,v 1.13 2017/12/30 23:08:29 guenther Exp $        */
 
 /*
  * Copyright (c) 2011 Matthew Dempsky <matthew@dempsky.org>
@@ -27,7 +27,7 @@
 #include <sys/device.h>
 #include <sys/disk.h>
 #include <sys/stat.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/uio.h>
 #include <sys/conf.h>
 #include <sys/dkio.h>
index ff8ac99..22f9fe6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: magma.c,v 1.26 2016/03/14 18:01:18 stefan Exp $       */
+/*     $OpenBSD: magma.c,v 1.27 2017/12/30 23:08:29 guenther Exp $     */
 
 /*-
  * Copyright (c) 1998 Iain Hibbert
@@ -36,7 +36,7 @@
 #include <sys/systm.h>
 #include <sys/proc.h>
 #include <sys/device.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/ioctl.h>
 #include <sys/malloc.h>
 #include <sys/tty.h>
index 260b8af..8f6c242 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: spif.c,v 1.19 2010/07/02 17:27:01 nicm Exp $  */
+/*     $OpenBSD: spif.c,v 1.20 2017/12/30 23:08:29 guenther Exp $      */
 
 /*
  * Copyright (c) 1999-2002 Jason L. Wright (jason@thought.net)
@@ -41,7 +41,7 @@
 #include <sys/proc.h>
 #include <sys/device.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/errno.h>
 #include <sys/ioctl.h>
 #include <sys/mbuf.h>
index 863a106..5cfb601 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uaudio.c,v 1.127 2017/05/03 06:58:11 ratchov Exp $ */
+/*     $OpenBSD: uaudio.c,v 1.128 2017/12/30 23:08:29 guenther Exp $ */
 /*     $NetBSD: uaudio.c,v 1.90 2004/10/29 17:12:53 kent Exp $ */
 
 /*
@@ -44,7 +44,7 @@
 #include <sys/device.h>
 #include <sys/ioctl.h>
 #include <sys/tty.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/selinfo.h>
 #include <sys/poll.h>
 
index b3c2043..88aa365 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ucom.c,v 1.65 2015/03/14 03:38:49 jsg Exp $ */
+/*     $OpenBSD: ucom.c,v 1.66 2017/12/30 23:08:29 guenther Exp $ */
 /*     $NetBSD: ucom.c,v 1.49 2003/01/01 00:10:25 thorpej Exp $        */
 
 /*
@@ -41,7 +41,7 @@
 #include <sys/ioctl.h>
 #include <sys/conf.h>
 #include <sys/tty.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/selinfo.h>
 #include <sys/vnode.h>
 #include <sys/device.h>
index 27e910e..673dc46 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ugen.c,v 1.96 2017/07/21 20:13:41 ians Exp $ */
+/*     $OpenBSD: ugen.c,v 1.97 2017/12/30 23:08:29 guenther Exp $ */
 /*     $NetBSD: ugen.c,v 1.63 2002/11/26 18:49:48 christos Exp $       */
 /*     $FreeBSD: src/sys/dev/usb/ugen.c,v 1.26 1999/11/17 22:33:41 n_hibma Exp $       */
 
@@ -41,7 +41,7 @@
 #include <sys/ioctl.h>
 #include <sys/conf.h>
 #include <sys/tty.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/selinfo.h>
 #include <sys/vnode.h>
 #include <sys/poll.h>
index 4d4c1b8..3f20e5f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: umidi.c,v 1.45 2017/04/08 02:57:25 deraadt Exp $      */
+/*     $OpenBSD: umidi.c,v 1.46 2017/12/30 23:08:29 guenther Exp $     */
 /*     $NetBSD: umidi.c,v 1.16 2002/07/11 21:14:32 augustss Exp $      */
 /*
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,7 +36,7 @@
 #include <sys/device.h>
 #include <sys/ioctl.h>
 #include <sys/conf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/selinfo.h>
 #include <sys/poll.h>
 
index 8abf1b4..007a6e9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uvideo.c,v 1.195 2017/08/21 14:38:32 jsg Exp $ */
+/*     $OpenBSD: uvideo.c,v 1.196 2017/12/30 23:08:29 guenther Exp $ */
 
 /*
  * Copyright (c) 2008 Robert Nagy <robert@openbsd.org>
@@ -24,7 +24,7 @@
 #include <sys/device.h>
 #include <sys/ioctl.h>
 #include <sys/tty.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/selinfo.h>
 #include <sys/lock.h>
 #include <sys/stat.h>
index ba8db67..7fbb510 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vnd.c,v 1.165 2017/07/19 14:54:29 deraadt Exp $       */
+/*     $OpenBSD: vnd.c,v 1.166 2017/12/30 23:08:29 guenther Exp $      */
 /*     $NetBSD: vnd.c,v 1.26 1996/03/30 23:06:11 christos Exp $        */
 
 /*
@@ -59,7 +59,7 @@
 #include <sys/disk.h>
 #include <sys/stat.h>
 #include <sys/vnode.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/uio.h>
 #include <sys/conf.h>
 #include <sys/dkio.h>
index 1f4bb0e..efe2e4a 100644 (file)
@@ -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>
index 021a60d..0a2fc0a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: exec_elf.c,v 1.141 2017/09/07 11:32:14 bluhm Exp $    */
+/*     $OpenBSD: exec_elf.c,v 1.142 2017/12/30 23:08:29 guenther Exp $ */
 
 /*
  * Copyright (c) 1996 Per Fogelstrom
@@ -79,7 +79,7 @@
 #include <sys/syslog.h>
 #include <sys/exec.h>
 #include <sys/exec_elf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/ptrace.h>
 #include <sys/syscall.h>
 #include <sys/signalvar.h>
index 692eaa5..e415570 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_acct.c,v 1.33 2017/01/21 05:42:03 guenther Exp $ */
+/*     $OpenBSD: kern_acct.c,v 1.34 2017/12/30 23:08:29 guenther Exp $ */
 /*     $NetBSD: kern_acct.c,v 1.42 1996/02/04 02:15:12 christos Exp $  */
 
 /*-
@@ -43,7 +43,7 @@
 #include <sys/proc.h>
 #include <sys/mount.h>
 #include <sys/vnode.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/syslog.h>
 #include <sys/kernel.h>
 #include <sys/namei.h>
index 08eab39..b386ee3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_ktrace.c,v 1.93 2017/11/28 06:03:41 guenther Exp $       */
+/*     $OpenBSD: kern_ktrace.c,v 1.94 2017/12/30 23:08:29 guenther Exp $       */
 /*     $NetBSD: kern_ktrace.c,v 1.23 1996/02/09 18:59:36 christos Exp $        */
 
 /*
@@ -36,7 +36,7 @@
 #include <sys/systm.h>
 #include <sys/proc.h>
 #include <sys/sched.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/namei.h>
 #include <sys/vnode.h>
 #include <sys/lock.h>
index c67ad40..4dec039 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_sig.c,v 1.213 2017/11/27 01:20:12 guenther Exp $ */
+/*     $OpenBSD: kern_sig.c,v 1.214 2017/12/30 23:08:29 guenther Exp $ */
 /*     $NetBSD: kern_sig.c,v 1.54 1996/04/22 01:38:32 christos Exp $   */
 
 /*
@@ -49,7 +49,7 @@
 #include <sys/proc.h>
 #include <sys/systm.h>
 #include <sys/acct.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/filedesc.h>
 #include <sys/kernel.h>
 #include <sys/wait.h>
index b2e104f..db115da 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: spec_vnops.c,v 1.89 2016/04/05 19:26:15 natano Exp $  */
+/*     $OpenBSD: spec_vnops.c,v 1.90 2017/12/30 23:08:29 guenther Exp $        */
 /*     $NetBSD: spec_vnops.c,v 1.29 1996/04/22 01:42:38 christos Exp $ */
 
 /*
@@ -45,7 +45,7 @@
 #include <sys/stat.h>
 #include <sys/errno.h>
 #include <sys/ioctl.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/disklabel.h>
 #include <sys/lockf.h>
 #include <sys/poll.h>
index f80e4bd..a22f9d7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tty.c,v 1.134 2017/06/29 04:10:07 deraadt Exp $       */
+/*     $OpenBSD: tty.c,v 1.135 2017/12/30 23:08:29 guenther Exp $      */
 /*     $NetBSD: tty.c,v 1.68.4.2 1996/06/06 16:04:52 thorpej Exp $     */
 
 /*-
@@ -44,7 +44,7 @@
 #define        TTYDEFCHARS
 #include <sys/tty.h>
 #undef TTYDEFCHARS
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/conf.h>
 #include <sys/uio.h>
 #include <sys/kernel.h>
index 0a2f563..3d7ee45 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tty_tty.c,v 1.20 2016/09/06 08:13:23 tedu Exp $       */
+/*     $OpenBSD: tty_tty.c,v 1.21 2017/12/30 23:08:29 guenther Exp $   */
 /*     $NetBSD: tty_tty.c,v 1.13 1996/03/30 22:24:46 christos Exp $    */
 
 /*-
@@ -42,7 +42,7 @@
 #include <sys/tty.h>
 #include <sys/vnode.h>
 #include <sys/lock.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 
 
 #define cttyvp(p) \
index 2a403a9..67af60d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: msdosfs_vfsops.c,v 1.85 2017/12/11 05:27:40 deraadt Exp $     */
+/*     $OpenBSD: msdosfs_vfsops.c,v 1.86 2017/12/30 23:08:29 guenther Exp $    */
 /*     $NetBSD: msdosfs_vfsops.c,v 1.48 1997/10/18 02:54:57 briggs Exp $       */
 
 /*-
@@ -58,7 +58,7 @@
 #include <sys/specdev.h> /* XXX */     /* defines v_rdev */
 #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/malloc.h>
index 21f1799..55bc2ba 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bpf.c,v 1.164 2017/08/11 21:24:19 mpi Exp $   */
+/*     $OpenBSD: bpf.c,v 1.165 2017/12/30 23:08:29 guenther Exp $      */
 /*     $NetBSD: bpf.c,v 1.33 1997/02/21 23:59:35 thorpej Exp $ */
 
 /*
@@ -48,7 +48,7 @@
 #include <sys/ioctl.h>
 #include <sys/conf.h>
 #include <sys/vnode.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/socket.h>
 #include <sys/poll.h>
 #include <sys/kernel.h>
index eabbaad..3a7fd26 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_tun.c,v 1.178 2017/08/11 21:24:19 mpi Exp $        */
+/*     $OpenBSD: if_tun.c,v 1.179 2017/12/30 23:08:29 guenther Exp $   */
 /*     $NetBSD: if_tun.c,v 1.24 1996/05/07 02:40:48 thorpej Exp $      */
 
 /*
@@ -48,7 +48,7 @@
 #include <sys/errno.h>
 #include <sys/syslog.h>
 #include <sys/selinfo.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/time.h>
 #include <sys/device.h>
 #include <sys/vnode.h>
index c358b91..6a5d250 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ppp_tty.c,v 1.46 2017/01/24 10:08:30 krw Exp $        */
+/*     $OpenBSD: ppp_tty.c,v 1.47 2017/12/30 23:08:29 guenther Exp $   */
 /*     $NetBSD: ppp_tty.c,v 1.12 1997/03/24 21:23:10 christos Exp $    */
 
 /*
 #include <sys/socket.h>
 #include <sys/timeout.h>
 #include <sys/ioctl.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/tty.h>
 #include <sys/kernel.h>
 #include <sys/conf.h>
index a83b066..7e0ea44 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cd.c,v 1.221 2017/09/08 05:36:53 deraadt Exp $        */
+/*     $OpenBSD: cd.c,v 1.222 2017/12/30 23:08:29 guenther Exp $       */
 /*     $NetBSD: cd.c,v 1.100 1997/04/02 02:29:30 mycroft Exp $ */
 
 /*
@@ -50,7 +50,7 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/timeout.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <sys/mtio.h>
index 06db326..a02d787 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sd.c,v 1.274 2017/09/08 05:36:53 deraadt Exp $        */
+/*     $OpenBSD: sd.c,v 1.275 2017/12/30 23:08:29 guenther Exp $       */
 /*     $NetBSD: sd.c,v 1.111 1997/04/02 02:29:41 mycroft Exp $ */
 
 /*-
@@ -51,7 +51,7 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/timeout.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <sys/mtio.h>
index 365f01e..114285d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ext2fs_vfsops.c,v 1.100 2017/12/11 05:27:40 deraadt Exp $     */
+/*     $OpenBSD: ext2fs_vfsops.c,v 1.101 2017/12/30 23:08:29 guenther Exp $    */
 /*     $NetBSD: ext2fs_vfsops.c,v 1.1 1997/06/11 09:34:07 bouyer Exp $ */
 
 /*
@@ -45,7 +45,7 @@
 #include <sys/buf.h>
 #include <sys/disk.h>
 #include <sys/mbuf.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/disklabel.h>
 #include <sys/ioctl.h>
 #include <sys/errno.h>
index 271fd22..7ea282a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ext2fs_vnops.c,v 1.77 2016/03/19 12:04:16 natano Exp $        */
+/*     $OpenBSD: ext2fs_vnops.c,v 1.78 2017/12/30 23:08:29 guenther Exp $      */
 /*     $NetBSD: ext2fs_vnops.c,v 1.1 1997/06/11 09:34:09 bouyer Exp $  */
 
 /*
@@ -43,7 +43,7 @@
 #include <sys/systm.h>
 #include <sys/resourcevar.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/stat.h>
 #include <sys/proc.h>
 #include <sys/conf.h>
index 64af433..9492e50 100644 (file)
@@ -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>
index 8585f88..a860d5b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ufs_quota.c,v 1.39 2016/03/19 12:04:16 natano Exp $   */
+/*     $OpenBSD: ufs_quota.c,v 1.40 2017/12/30 23:08:29 guenther Exp $ */
 /*     $NetBSD: ufs_quota.c,v 1.8 1996/02/09 22:36:09 christos Exp $   */
 
 /*
@@ -40,7 +40,7 @@
 #include <sys/systm.h>
 #include <sys/namei.h>
 #include <sys/malloc.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/proc.h>
 #include <sys/vnode.h>
 #include <sys/mount.h>
index a0de3e6..6d6ef18 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uvm_swap.c,v 1.141 2017/04/09 18:14:39 dhill Exp $    */
+/*     $OpenBSD: uvm_swap.c,v 1.142 2017/12/30 23:08:29 guenther Exp $ */
 /*     $NetBSD: uvm_swap.c,v 1.40 2000/11/17 11:39:39 mrg Exp $        */
 
 /*
@@ -43,7 +43,7 @@
 #include <sys/kernel.h>
 #include <sys/malloc.h>
 #include <sys/vnode.h>
-#include <sys/file.h>
+#include <sys/fcntl.h>
 #include <sys/extent.h>
 #include <sys/mount.h>
 #include <sys/pool.h>