make static, to not pollute globals

This commit is contained in:
Nils O. Selåsdal
2015-12-01 23:02:27 +01:00
parent 5b12583a89
commit a314c624d1
+2 -2
View File
@@ -8,12 +8,12 @@
static enum IOMUX_TYPE g_iomux_type = IOMUX_TYPE_DEFAULT;
void set_iomux_type_select(void)
static void set_iomux_type_select(void)
{
g_iomux_type = IOMUX_TYPE_SELECT;
}
void set_iomux_type_epoll(void)
static void set_iomux_type_epoll(void)
{
g_iomux_type = IOMUX_TYPE_EPOLL;
}