diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-27 19:01:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-27 19:01:53 +0000 |
commit | 6af2197a68b3a0e9ce04f275a4ad9cd3d800e13d (patch) | |
tree | 5d3da5057959d4c643cd471e89c376a21481d5b4 | |
parent | e6d0bf1dab3affbfbe1aa40245bf175d4cae5feb (diff) |
protos for userland build
-rw-r--r-- | sys/net/bpf_filter.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/net/bpf_filter.c b/sys/net/bpf_filter.c index 5c0082d4fd4..fed5cb8d197 100644 --- a/sys/net/bpf_filter.c +++ b/sys/net/bpf_filter.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf_filter.c,v 1.9 2003/06/02 23:28:11 millert Exp $ */ +/* $OpenBSD: bpf_filter.c,v 1.10 2003/06/27 19:01:52 deraadt Exp $ */ /* $NetBSD: bpf_filter.c,v 1.12 1996/02/13 22:00:00 christos Exp $ */ /* @@ -40,6 +40,9 @@ #include <sys/param.h> #include <sys/types.h> #include <sys/time.h> +#ifndef _KERNEL +#include "pcap.h" +#endif #ifndef UNALIGNED_ACCESS #define BPF_ALIGN |