diff options
author | wollman <wollman@FreeBSD.org> | 1994-12-22 22:00:30 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-12-22 22:00:30 +0000 |
commit | cb6f19622ff3f337049d349a67388531a0df76c6 (patch) | |
tree | 90105a1fa7383ec979c49d92845e2792f184c041 /sys/netinet | |
parent | e6ec63204feee711e761971002214c19f676007d (diff) | |
download | FreeBSD-src-cb6f19622ff3f337049d349a67388531a0df76c6.zip FreeBSD-src-cb6f19622ff3f337049d349a67388531a0df76c6.tar.gz |
Make arp_rtrequest() static since nobody needs to referene it any more.
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/if_ether.c | 4 | ||||
-rw-r--r-- | sys/netinet/if_ether.h | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index b2c22cf..ae301ef 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_ether.c 8.1 (Berkeley) 6/10/93 - * $Id: if_ether.c,v 1.8 1994/12/13 22:32:44 wollman Exp $ + * $Id: if_ether.c,v 1.9 1994/12/22 21:56:21 wollman Exp $ */ /* @@ -138,7 +138,7 @@ arptimer(ignored_arg) /* * Parallel to llc_rtrequest. */ -void +static void arp_rtrequest(req, rt, sa) int req; register struct rtentry *rt; diff --git a/sys/netinet/if_ether.h b/sys/netinet/if_ether.h index 26c13c0..016572f 100644 --- a/sys/netinet/if_ether.h +++ b/sys/netinet/if_ether.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if_ether.h 8.1 (Berkeley) 6/10/93 - * $Id: if_ether.h,v 1.5 1994/10/11 23:16:38 wollman Exp $ + * $Id: if_ether.h,v 1.6 1994/12/22 21:56:22 wollman Exp $ */ #ifndef _NETINET_IF_ETHER_H_ @@ -153,7 +153,6 @@ void arpwhohas __P((struct arpcom *, struct in_addr *)); void arpintr __P((void)); int arpresolve __P((struct arpcom *, struct rtentry *, struct mbuf *, struct sockaddr *, u_char *, struct rtentry *)); -void arp_rtrequest __P((int, struct rtentry *, struct sockaddr *)); void arp_ifinit __P((struct arpcom *, struct ifaddr *)); int ether_addmulti __P((struct ifreq *, struct arpcom *)); |