blob: 24fc9c9b13a54d6094ae68321a9543d1ff68cf47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/common/gsm-filetypes.c b/common/gsm-filetypes.c
index b4ceea1..264420a 100644
--- a/common/gsm-filetypes.c
+++ b/common/gsm-filetypes.c
@@ -1409,7 +1409,7 @@ static int get_next_token(char *src, int delim)
#define GET_NEXT_TOKEN() o = get_next_token(line + offset, ';')
#define STORE_TOKEN(a) strip_slashes(a, line + offset, sizeof(a) - 1, o - 1)
-inline int local_atoi(char *str, int len)
+int local_atoi(char *str, int len)
{
int retval;
char *aux = strndup(str, len);
|