From d7e53ec719532bd6d0561d042f7784e69746d61e Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Tue, 4 Mar 1997 03:33:00 +0000 Subject: [PATCH] fix minor compilation problems --- netbsd-1.1/if_ppp.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/netbsd-1.1/if_ppp.c b/netbsd-1.1/if_ppp.c index c4f1256..7a32ab4 100644 --- a/netbsd-1.1/if_ppp.c +++ b/netbsd-1.1/if_ppp.c @@ -1,4 +1,4 @@ -/* $Id: if_ppp.c,v 1.5 1996/09/26 06:24:14 paulus Exp $ */ +/* $Id: if_ppp.c,v 1.6 1997/03/04 03:33:00 paulus Exp $ */ /* * if_ppp.c - Point-to-Point Protocol (PPP) Asynchronous driver. @@ -129,6 +129,9 @@ #include #endif +static int pppsioctl __P((struct ifnet *, u_long, caddr_t)); +static int pppoutput __P((struct ifnet *, struct mbuf *, + struct sockaddr *, struct rtentry *)); static void ppp_requeue __P((struct ppp_softc *)); static void ppp_outpkt __P((struct ppp_softc *)); static void ppp_ccp __P((struct ppp_softc *, struct mbuf *m, int rcvd)); @@ -529,7 +532,7 @@ pppioctl(sc, cmd, data, flag, p) /* * Process an ioctl request to the ppp network interface. */ -int +static int pppsioctl(ifp, cmd, data) register struct ifnet *ifp; u_long cmd; -- 2.39.2