diff options
| author | Brooks Davis <brooks@FreeBSD.org> | 2004-04-14 00:57:49 +0000 |
|---|---|---|
| committer | Brooks Davis <brooks@FreeBSD.org> | 2004-04-14 00:57:49 +0000 |
| commit | bb2bfb4fa9ed358aa54648f280c512fc72c10f63 (patch) | |
| tree | 0f86b553c2697d1910c06cc355941a574f842b05 /sys/net/if_loop.c | |
| parent | 17834543c83e98208492d557c497934669f89702 (diff) | |
Notes
Diffstat (limited to 'sys/net/if_loop.c')
| -rw-r--r-- | sys/net/if_loop.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c index 75dbd7fbcfb3..adfad228feef 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -102,8 +102,8 @@ int loioctl(struct ifnet *, u_long, caddr_t); static void lortrequest(int, struct rtentry *, struct rt_addrinfo *); int looutput(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst, struct rtentry *rt); -int lo_clone_create(struct if_clone *, int); -void lo_clone_destroy(struct ifnet *); +static int lo_clone_create(struct if_clone *, int); +static void lo_clone_destroy(struct ifnet *); struct ifnet *loif = NULL; /* Used externally */ @@ -115,7 +115,7 @@ static LIST_HEAD(lo_list, lo_softc) lo_list; struct if_clone lo_cloner = IF_CLONE_INITIALIZER(LONAME, lo_clone_create, lo_clone_destroy, 1, IF_MAXUNIT); -void +static void lo_clone_destroy(ifp) struct ifnet *ifp; { @@ -134,7 +134,7 @@ lo_clone_destroy(ifp) free(sc, M_LO); } -int +static int lo_clone_create(ifc, unit) struct if_clone *ifc; int unit; |
