summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/netinet/tcp_subr.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-03-28 05:23:18 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-03-28 05:23:18 +0000
commite5d6315e20278ce7a678d47def518a5416888c19 (patch)
tree4e06b8236a008ae65886c7aef8c9e7783047804e /cpukit/libnetworking/netinet/tcp_subr.c
parent2007-03-28 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-e5d6315e20278ce7a678d47def518a5416888c19.tar.bz2
Eliminate __P().
Diffstat (limited to 'cpukit/libnetworking/netinet/tcp_subr.c')
-rw-r--r--cpukit/libnetworking/netinet/tcp_subr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libnetworking/netinet/tcp_subr.c b/cpukit/libnetworking/netinet/tcp_subr.c
index fd9b160fdf..6349eeb4fc 100644
--- a/cpukit/libnetworking/netinet/tcp_subr.c
+++ b/cpukit/libnetworking/netinet/tcp_subr.c
@@ -84,7 +84,7 @@ SYSCTL_INT(_net_inet_tcp, TCPCTL_DO_RFC1323, rfc1323,
CTLFLAG_RW, &tcp_do_rfc1323 , 0, "");
#endif
-static void tcp_notify __P((struct inpcb *, int));
+static void tcp_notify(struct inpcb *, int);
/*
* Target size of TCP PCB hash table. Will be rounded down to a prime
@@ -581,7 +581,7 @@ tcp_ctlinput(cmd, sa, vip)
{
struct ip *ip = vip;
struct tcphdr *th;
- void (*notify) __P((struct inpcb *, int)) = tcp_notify;
+ void (*notify)(struct inpcb *, int) = tcp_notify;
if (cmd == PRC_QUENCH)
notify = tcp_quench;