diff options
author | bde <bde@FreeBSD.org> | 1995-03-16 18:17:34 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-03-16 18:17:34 +0000 |
commit | 289f11acb49b6dbb3081e09bf94a86f008f55814 (patch) | |
tree | e4952f18ac85eccbbd3d9b0f010098732d07fe6d /sys/netinet/tcp_input.c | |
parent | 4c4945abee9eabe3a2be340ba973ae861c21a3c6 (diff) | |
download | FreeBSD-src-289f11acb49b6dbb3081e09bf94a86f008f55814.zip FreeBSD-src-289f11acb49b6dbb3081e09bf94a86f008f55814.tar.gz |
Add and move declarations to fix all of the warnings from `gcc -Wimplicit'
(except in netccitt, netiso and netns) and most of the warnings from
`gcc -Wnested-externs'. Fix all the bugs found. There were no serious
ones.
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index a6bf6fc..bc34836 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)tcp_input.c 8.5 (Berkeley) 4/10/94 - * $Id: tcp_input.c,v 1.14 1995/02/16 00:55:39 wollman Exp $ + * $Id: tcp_input.c,v 1.15 1995/02/16 01:39:19 wollman Exp $ */ #ifndef TUBA_INCLUDE @@ -1881,8 +1881,6 @@ tcp_mss(tp, offer) struct socket *so; struct rmxp_tao *taop; int origoffer = offer; - extern int tcp_do_rfc1644; - extern int tcp_mssdflt; inp = tp->t_inpcb; if ((rt = tcp_rtlookup(inp)) == NULL) { @@ -2040,7 +2038,6 @@ tcp_mssopt(tp) struct tcpcb *tp; { struct rtentry *rt; - extern int tcp_mssdflt; rt = tcp_rtlookup(tp->t_inpcb); if (rt == NULL) |