diff options
author | bde <bde@FreeBSD.org> | 1995-07-29 11:44:31 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-07-29 11:44:31 +0000 |
commit | 38a74a7bc23af4d5ed5deeff2f4ab6329b0a26cc (patch) | |
tree | b89d1e0366b685acdcb1eb8c959a65e2e330cb0c /sys/netns/spp_usrreq.c | |
parent | 795b455aacbca36da42882b1290f5d37f1618bfe (diff) | |
download | FreeBSD-src-38a74a7bc23af4d5ed5deeff2f4ab6329b0a26cc.zip FreeBSD-src-38a74a7bc23af4d5ed5deeff2f4ab6329b0a26cc.tar.gz |
Eliminate sloppy common-style declarations. There should be none left for
the LINT configuation.
Diffstat (limited to 'sys/netns/spp_usrreq.c')
-rw-r--r-- | sys/netns/spp_usrreq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netns/spp_usrreq.c b/sys/netns/spp_usrreq.c index fbce16a..f0df56f 100644 --- a/sys/netns/spp_usrreq.c +++ b/sys/netns/spp_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spp_usrreq.c 8.1 (Berkeley) 6/10/93 - * $Id: spp_usrreq.c,v 1.3 1995/03/19 14:29:04 davidg Exp $ + * $Id: spp_usrreq.c,v 1.4 1995/05/30 08:12:31 rgrimes Exp $ */ #include <sys/param.h> @@ -68,8 +68,9 @@ spp_init() } struct spidp spp_savesi; int traceallspps = 0; -extern int sppconsdebug; int spp_hardnosed; +struct spp_istat spp_istat; +u_short spp_iss; int spp_use_delack = 0; u_short spp_newchecks[50]; @@ -1116,7 +1117,6 @@ spp_setpersist(cb) register struct sppcb *cb; { register t = ((cb->s_srtt >> 2) + cb->s_rttvar) >> 1; - extern int spp_backoff[]; if (cb->s_timer[SPPT_REXMT] && spp_do_persist_panics) panic("spp_output REXMT"); |