diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-01-21 13:44:28 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-01-21 13:44:28 +0000 |
commit | 4dcf61677bcb737a20720758723b6335c5ce01dc (patch) | |
tree | 3ac08b6bef0a4cc787e87b0e7155d1153c87a139 | |
parent | fe82135071dcc362271ce7ec3bd50fcb3dc37506 (diff) |
Make token_output not static.
-rw-r--r-- | sys/net/if_tokensubr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net/if_tokensubr.c b/sys/net/if_tokensubr.c index 2705902d883..172e7e40913 100644 --- a/sys/net/if_tokensubr.c +++ b/sys/net/if_tokensubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tokensubr.c,v 1.1 1999/12/27 21:47:23 fgsch Exp $ */ +/* $OpenBSD: if_tokensubr.c,v 1.2 2000/01/21 13:44:27 fgsch Exp $ */ /* $NetBSD: if_tokensubr.c,v 1.7 1999/05/30 00:39:07 bad Exp $ */ /* @@ -123,8 +123,8 @@ extern struct ifqueue pkintrq; #define llc_snap llc_un.type_snap #endif -static int token_output __P((struct ifnet *, struct mbuf *, - struct sockaddr *, struct rtentry *)); +int token_output __P((struct ifnet *, struct mbuf *, struct sockaddr *, + struct rtentry *)); /* * Token Ring output routine. @@ -132,7 +132,7 @@ static int token_output __P((struct ifnet *, struct mbuf *, * Assumes that ifp is actually pointer to arphdr structure. * XXX route info has to go into the same mbuf as the header */ -static int +int token_output(ifp, m0, dst, rt0) register struct ifnet *ifp; struct mbuf *m0; |