diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2008-06-12 15:08:48 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2008-06-12 15:08:48 +0000 |
commit | ef3d51cb652f1f438b01dca29e018e458a1f3274 (patch) | |
tree | 4636164af31958d1f3105ad48ce755d459558a9b /sys/netinet/tcp_output.c | |
parent | 58c595648f0a056113d52a22270b58dc9c5f2cad (diff) |
ANSIfy function definitions.
ok markus@ mcbride@ henning@ deraadt@
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r-- | sys/netinet/tcp_output.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 361e2d39bbe..3a01b9811f9 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_output.c,v 1.81 2007/11/24 12:59:28 jmc Exp $ */ +/* $OpenBSD: tcp_output.c,v 1.82 2008/06/12 15:08:47 jsing Exp $ */ /* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */ /* @@ -205,8 +205,7 @@ tcp_sack_adjust(struct tcpcb *tp) * Tcp output routine: figure out what should be sent and send it. */ int -tcp_output(tp) - struct tcpcb *tp; +tcp_output(struct tcpcb *tp) { struct socket *so = tp->t_inpcb->inp_socket; long len, win, txmaxseg; |