diff options
| author | 2002-03-14 03:15:49 +0000 | |
|---|---|---|
| committer | 2002-03-14 03:15:49 +0000 | |
| commit | 4f9e30d05c4b39ece1e3c5a9323df2ddfd85bd9b (patch) | |
| tree | 021b0ffa6ce82de256743d5f188c18bf3aee34de /sys/net/bpf.c | |
| parent | generate std ANSI protos, not __P ones (diff) | |
| download | wireguard-openbsd-4f9e30d05c4b39ece1e3c5a9323df2ddfd85bd9b.tar.xz wireguard-openbsd-4f9e30d05c4b39ece1e3c5a9323df2ddfd85bd9b.zip | |
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/net/bpf.c')
| -rw-r--r-- | sys/net/bpf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c index 24967d48e31..9d6cbb0821d 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf.c,v 1.31 2002/03/14 01:27:09 millert Exp $ */ +/* $OpenBSD: bpf.c,v 1.32 2002/03/14 03:16:10 millert Exp $ */ /* $NetBSD: bpf.c,v 1.33 1997/02/21 23:59:35 thorpej Exp $ */ /* @@ -89,8 +89,8 @@ void bpf_detachd(struct bpf_d *); int bpf_setif(struct bpf_d *, struct ifreq *); int bpfselect(dev_t, int, struct proc *); static __inline void bpf_wakeup(struct bpf_d *); -void bpf_catchpacket __P((struct bpf_d *, u_char *, size_t, size_t, - void (*)(const void *, void *, size_t))); +void bpf_catchpacket(struct bpf_d *, u_char *, size_t, size_t, + void (*)(const void *, void *, size_t)); void bpf_reset_d(struct bpf_d *); int |
