Mark functions static

These functions are not used outside this file.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
Jouni Malinen 2014-07-02 13:03:22 +03:00 committed by Jouni Malinen
parent e8e571d7ce
commit 8f03ac9007

View file

@ -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;