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/net/bpf.c | |
parent | 0b1bf6081fad3d2e922fc79beeb4f1e0fe81cbfe (diff) |
Don't pull in <sys/file.h> just to get fcntl.h
ok deraadt@ krw@
Diffstat (limited to 'sys/net/bpf.c')
-rw-r--r-- | sys/net/bpf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c index 21f1799cbf6..55bc2ba35c7 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -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> |