make route_init() static

This commit is contained in:
Luigi Rizzo 2004-04-17 15:10:20 +00:00
parent 913af51859
commit 2eb5613fe6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=128357
2 changed files with 2 additions and 3 deletions

View File

@ -68,8 +68,8 @@ rtable_init(void **table)
dom->dom_rtoffset);
}
void
route_init()
static void
route_init(void)
{
rn_init(); /* initialize all zeroes, all ones, mask table */
rtable_init((void **)rt_tables);

View File

@ -313,7 +313,6 @@ extern struct radix_node_head *rt_tables[AF_MAX+1];
struct ifmultiaddr;
void route_init(void);
int rt_getifa(struct rt_addrinfo *);
void rt_ifannouncemsg(struct ifnet *, int);
void rt_ifmsg(struct ifnet *);