summaryrefslogtreecommitdiffstats
path: root/sys/net/if_bridge.h
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-03-14 01:26:25 +0000
committermillert <millert@openbsd.org>2002-03-14 01:26:25 +0000
commitc4071fd13883b3f74b90a411bbb39755a785aeaa (patch)
tree241e7c760222fac909b512d36156c6db1b610256 /sys/net/if_bridge.h
parentcompare pointers with NULL not 0 (diff)
downloadwireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz
wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip
First round of __P removal in sys
Diffstat (limited to 'sys/net/if_bridge.h')
-rw-r--r--sys/net/if_bridge.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/net/if_bridge.h b/sys/net/if_bridge.h
index 54e5331c875..aff86144c94 100644
--- a/sys/net/if_bridge.h
+++ b/sys/net/if_bridge.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bridge.h,v 1.16 2001/12/15 08:40:56 jason Exp $ */
+/* $OpenBSD: if_bridge.h,v 1.17 2002/03/14 01:27:09 millert Exp $ */
/*
* Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net)
@@ -261,14 +261,14 @@ struct bridge_softc {
extern u_int8_t bstp_etheraddr[];
-void bridge_ifdetach __P((struct ifnet *));
-struct mbuf *bridge_input __P((struct ifnet *, struct ether_header *,
- struct mbuf *));
-int bridge_output __P((struct ifnet *, struct mbuf *, struct sockaddr *,
- struct rtentry *rt));
-struct mbuf *bstp_input __P((struct bridge_softc *, struct ifnet *,
- struct ether_header *, struct mbuf *));
-void bstp_initialization __P((struct bridge_softc *));
-int bstp_ioctl __P((struct ifnet *, u_long, caddr_t));
+void bridge_ifdetach(struct ifnet *);
+struct mbuf *bridge_input(struct ifnet *, struct ether_header *,
+ struct mbuf *);
+int bridge_output(struct ifnet *, struct mbuf *, struct sockaddr *,
+ struct rtentry *rt);
+struct mbuf *bstp_input(struct bridge_softc *, struct ifnet *,
+ struct ether_header *, struct mbuf *);
+void bstp_initialization(struct bridge_softc *);
+int bstp_ioctl(struct ifnet *, u_long, caddr_t);
#endif /* _KERNEL */
#endif /* _NET_IF_BRIDGE_H_ */