aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/ip_input.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-03-19 21:25:46 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-03-19 21:25:46 +0000
commit4d77a549fed13746cc4edf84e511b385c1754f3d (patch)
tree7ea68f3b5c452a55df6c05b903dae3ac1e8f71f9 /sys/netinet/ip_input.c
parent89fb8ee796263407b2396378b7076c0350b9e5cc (diff)
downloadsrc-4d77a549fed13746cc4edf84e511b385c1754f3d.tar.gz
src-4d77a549fed13746cc4edf84e511b385c1754f3d.zip
Remove __P.
Notes
Notes: svn path=/head/; revision=92723
Diffstat (limited to 'sys/netinet/ip_input.c')
-rw-r--r--sys/netinet/ip_input.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c
index 541510fd3cf1..9d2b019e3da6 100644
--- a/sys/netinet/ip_input.c
+++ b/sys/netinet/ip_input.c
@@ -209,16 +209,16 @@ static struct ip_srcrt {
struct sockaddr_in *ip_fw_fwd_addr;
-static void save_rte __P((u_char *, struct in_addr));
-static int ip_dooptions __P((struct mbuf *, int));
-static void ip_forward __P((struct mbuf *, int));
-static void ip_freef __P((struct ipqhead *, struct ipq *));
+static void save_rte(u_char *, struct in_addr);
+static int ip_dooptions(struct mbuf *, int);
+static void ip_forward(struct mbuf *, int);
+static void ip_freef(struct ipqhead *, struct ipq *);
#ifdef IPDIVERT
-static struct mbuf *ip_reass __P((struct mbuf *, struct ipqhead *, struct ipq *, u_int32_t *, u_int16_t *));
+static struct mbuf *ip_reass(struct mbuf *, struct ipqhead *, struct ipq *, u_int32_t *, u_int16_t *);
#else
-static struct mbuf *ip_reass __P((struct mbuf *, struct ipqhead *, struct ipq *));
+static struct mbuf *ip_reass(struct mbuf *, struct ipqhead *, struct ipq *);
#endif
-static void ipintr __P((void));
+static void ipintr(void);
/*
* IP initialization: fill in IP protocol switch table.