aboutsummaryrefslogtreecommitdiff
path: root/sys/net/bpf.h
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-03-19 21:54:18 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-03-19 21:54:18 +0000
commit929ddbbb891407869938d6db5528f48f750fa90c (patch)
tree1dac628690deaa2d6ec636edfafaaa40b6cc7fd5 /sys/net/bpf.h
parent67b362072d6312c759da1433a78963c0fe4218d9 (diff)
Remove __P.
Notes
Notes: svn path=/head/; revision=92725
Diffstat (limited to 'sys/net/bpf.h')
-rw-r--r--sys/net/bpf.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/net/bpf.h b/sys/net/bpf.h
index ed3ebf45a31d..933662e160e8 100644
--- a/sys/net/bpf.h
+++ b/sys/net/bpf.h
@@ -308,14 +308,14 @@ struct bpf_insn {
#define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k }
#ifdef _KERNEL
-int bpf_validate __P((const struct bpf_insn *, int));
-void bpf_tap __P((struct ifnet *, u_char *, u_int));
-void bpf_mtap __P((struct ifnet *, struct mbuf *));
-void bpfattach __P((struct ifnet *, u_int, u_int));
-void bpfdetach __P((struct ifnet *));
+int bpf_validate(const struct bpf_insn *, int);
+void bpf_tap(struct ifnet *, u_char *, u_int);
+void bpf_mtap(struct ifnet *, struct mbuf *);
+void bpfattach(struct ifnet *, u_int, u_int);
+void bpfdetach(struct ifnet *);
-void bpfilterattach __P((int));
-u_int bpf_filter __P((const struct bpf_insn *, u_char *, u_int, u_int));
+void bpfilterattach(int);
+u_int bpf_filter(const struct bpf_insn *, u_char *, u_int, u_int);
#endif
/*