Commit 61077c38 authored by Mike Frysinger's avatar Mike Frysinger

lib: af/hw: localize init functions

These are only used internally to initialize themselves, so mark them
static.
parent cf32e547
......@@ -156,7 +156,7 @@ struct aftype *aftypes[] =
NULL
};
void afinit()
static void afinit(void)
{
unspec_aftype.title = _("UNSPEC");
#if HAVE_AFUNIX
......
......@@ -160,7 +160,7 @@ static struct hwtype *hwtypes[] =
static short sVhwinit = 0;
void hwinit()
static void hwinit(void)
{
loop_hwtype.title = _("Local Loopback");
unspec_hwtype.title = _("UNSPEC");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment