diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/netinet/ip_icmp.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/netinet/ip_icmp.h')
-rw-r--r-- | sys/netinet/ip_icmp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/netinet/ip_icmp.h b/sys/netinet/ip_icmp.h index c734833b1bb..67bb97ebd0e 100644 --- a/sys/netinet/ip_icmp.h +++ b/sys/netinet/ip_icmp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_icmp.h,v 1.15 2002/01/12 00:51:59 ericj Exp $ */ +/* $OpenBSD: ip_icmp.h,v 1.16 2002/03/14 01:27:11 millert Exp $ */ /* $NetBSD: ip_icmp.h,v 1.10 1996/02/13 23:42:28 christos Exp $ */ /* @@ -209,14 +209,14 @@ struct icmp { (type) == ICMP_MASKREQ || (type) == ICMP_MASKREPLY) #ifdef _KERNEL -void icmp_error __P((struct mbuf *, int, int, n_long, struct ifnet *)); -void icmp_input __P((struct mbuf *, ...)); -void icmp_init __P((void)); -void icmp_reflect __P((struct mbuf *)); -void icmp_send __P((struct mbuf *, struct mbuf *)); -int icmp_sysctl __P((int *, u_int, void *, size_t *, void *, size_t)); +void icmp_error(struct mbuf *, int, int, n_long, struct ifnet *); +void icmp_input(struct mbuf *, ...); +void icmp_init(void); +void icmp_reflect(struct mbuf *); +void icmp_send(struct mbuf *, struct mbuf *); +int icmp_sysctl(int *, u_int, void *, size_t *, void *, size_t); struct rtentry * icmp_mtudisc_clone(struct sockaddr *); -void icmp_mtudisc __P((struct icmp *)); +void icmp_mtudisc(struct icmp *); #endif /* _KERNEL */ #endif /* _NETINET_IP_ICMP_H_ */ |