From 8f03ac90072235538c7a675e825b2198f3358821 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Wed, 2 Jul 2014 13:03:22 +0300 Subject: [PATCH] Mark functions static These functions are not used outside this file. Signed-off-by: Jouni Malinen --- wpa_supplicant/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wpa_supplicant/config.c b/wpa_supplicant/config.c index e666c9b36..4dc3e96cd 100644 --- a/wpa_supplicant/config.c +++ b/wpa_supplicant/config.c @@ -2824,7 +2824,7 @@ int wpa_config_set_cred(struct wpa_cred *cred, const char *var, } -char * alloc_int_str(int val) +static char * alloc_int_str(int val) { char *buf; @@ -2836,7 +2836,7 @@ char * alloc_int_str(int val) } -char * alloc_strdup(const char *str) +static char * alloc_strdup(const char *str) { if (str == NULL) return NULL;