79b12f2
Patch by Robert Scheck <robert@fedoraproject.org> for gnokii <= 0.6.31 to avoid
79b12f2
build failures with GCC 7.x as "../common/.libs/libgnokii.so: undefined reference
79b12f2
to `local_atoi'". The "inline" is only a hint that the compiler doesn't complain
79b12f2
about double defined symbols, but does not guarantee that a function is inlined
79b12f2
or that a symbol is generated when needed.
79b12f2
79b12f2
--- gnokii-0.6.31/common/gsm-filetypes.c	2011-12-02 15:53:04.000000000 +0100
79b12f2
+++ gnokii-0.6.31/common/gsm-filetypes.c.gcc7	2017-02-12 00:55:39.000000000 +0100
79b12f2
@@ -1409,7 +1409,7 @@
79b12f2
 #define GET_NEXT_TOKEN()	o = get_next_token(line + offset, ';')
79b12f2
 #define STORE_TOKEN(a)		strip_slashes(a, line + offset, sizeof(a) - 1, o - 1)
79b12f2
 
79b12f2
-inline int local_atoi(char *str, int len)
79b12f2
+static int local_atoi(char *str, int len)
79b12f2
 {
79b12f2
 	int retval;
79b12f2
 	char *aux = strndup(str, len);