diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-07-01 19:11:17 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-07-01 19:11:17 +0000 |
commit | 6cb9c6d36f17c964a7e5b56c5452178f0e3abdb4 (patch) | |
tree | 88fe4f534351b5c93a74ef479771fe1acac3e764 /slirp/ip_icmp.h | |
parent | 22d091b38d30cc22b923daca8cf0f0c0cffadcd7 (diff) |
Fix breakage by obsolete _P() for good
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'slirp/ip_icmp.h')
-rw-r--r-- | slirp/ip_icmp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slirp/ip_icmp.h b/slirp/ip_icmp.h index 03301313e0..e793990d28 100644 --- a/slirp/ip_icmp.h +++ b/slirp/ip_icmp.h @@ -153,9 +153,9 @@ struct icmp { (type) == ICMP_IREQ || (type) == ICMP_IREQREPLY || \ (type) == ICMP_MASKREQ || (type) == ICMP_MASKREPLY) -void icmp_input _P((struct mbuf *, int)); +void icmp_input(struct mbuf *, int); void icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize, const char *message); -void icmp_reflect _P((struct mbuf *)); +void icmp_reflect(struct mbuf *); #endif |