summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfgsch <fgsch@openbsd.org>2000-01-21 13:44:27 +0000
committerfgsch <fgsch@openbsd.org>2000-01-21 13:44:27 +0000
commit547e125a6d66480d41bd2770716ed8ed8fc62c43 (patch)
tree5a3d1cbe99d0e91eb61249793b85ee337f036682
parentHide cursor if possible (diff)
downloadwireguard-openbsd-547e125a6d66480d41bd2770716ed8ed8fc62c43.tar.xz
wireguard-openbsd-547e125a6d66480d41bd2770716ed8ed8fc62c43.zip
Make token_output not static.
-rw-r--r--sys/net/if_tokensubr.c8
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;