diff options
Diffstat (limited to 'sys/net/if_loop.c')
-rw-r--r-- | sys/net/if_loop.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c index 8cb5951..cd8568f 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_loop.c 8.1 (Berkeley) 6/10/93 - * $Id: if_loop.c,v 1.14 1995/10/26 20:30:13 julian Exp $ + * $Id: if_loop.c,v 1.15 1995/12/02 17:11:11 bde Exp $ */ /* @@ -80,6 +80,9 @@ #include "bpfilter.h" +static int loioctl __P((struct ifnet *, int, caddr_t)); +static void lortrequest __P((int, struct rtentry *, struct sockaddr *)); + static void loopattach __P((void *)); PSEUDO_SET(loopattach, if_loop); @@ -214,7 +217,7 @@ looutput(ifp, m, dst, rt) } /* ARGSUSED */ -void +static void lortrequest(cmd, rt, sa) int cmd; struct rtentry *rt; @@ -229,7 +232,7 @@ lortrequest(cmd, rt, sa) * Process an ioctl request. */ /* ARGSUSED */ -int +static int loioctl(ifp, cmd, data) register struct ifnet *ifp; int cmd; |