diff options
| author | 2002-03-14 01:26:25 +0000 | |
|---|---|---|
| committer | 2002-03-14 01:26:25 +0000 | |
| commit | c4071fd13883b3f74b90a411bbb39755a785aeaa (patch) | |
| tree | 241e7c760222fac909b512d36156c6db1b610256 /sys/net/bpf_filter.c | |
| parent | compare pointers with NULL not 0 (diff) | |
| download | wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip | |
First round of __P removal in sys
Diffstat (limited to 'sys/net/bpf_filter.c')
| -rw-r--r-- | sys/net/bpf_filter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/bpf_filter.c b/sys/net/bpf_filter.c index 095ac146037..2563fe2e9c3 100644 --- a/sys/net/bpf_filter.c +++ b/sys/net/bpf_filter.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf_filter.c,v 1.7 2000/06/19 03:00:54 jason Exp $ */ +/* $OpenBSD: bpf_filter.c,v 1.8 2002/03/14 01:27:09 millert Exp $ */ /* $NetBSD: bpf_filter.c,v 1.12 1996/02/13 22:00:00 christos Exp $ */ /* @@ -78,8 +78,8 @@ } \ } -int bpf_m_xword __P((struct mbuf *, int, int *)); -int bpf_m_xhalf __P((struct mbuf *, int, int *)); +int bpf_m_xword(struct mbuf *, int, int *); +int bpf_m_xhalf(struct mbuf *, int, int *); int bpf_m_xword(m, k, err) |
