diff options
author | 2008-06-12 15:08:47 +0000 | |
---|---|---|
committer | 2008-06-12 15:08:47 +0000 | |
commit | fe427352f9f5713384f641a33d8b62c353221dfb (patch) | |
tree | 55a98e99eaa39ba7d996b3cb139068525a28b9a2 /sys/netinet/tcp_output.c | |
parent | Fix type difference between function prototype and implementation. (diff) | |
download | wireguard-openbsd-fe427352f9f5713384f641a33d8b62c353221dfb.tar.xz wireguard-openbsd-fe427352f9f5713384f641a33d8b62c353221dfb.zip |
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; |