From a314c624d15ee8ac7a86ec2020551a8be004ec87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Tue, 1 Dec 2015 23:02:27 +0100 Subject: [PATCH] make static, to not pollute globals --- test/test_iomux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_iomux.c b/test/test_iomux.c index 303a284..bc150e9 100644 --- a/test/test_iomux.c +++ b/test/test_iomux.c @@ -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; }