Add missing string protos. * src/guess.c:150:12: warning: implicit declaration of function ‘strncmp’ [-Wimplicit-function-declaration] * src/guess.c:218:22: warning: implicit declaration of function ‘strcmp’ [-Wimplicit-function-declaration] * src/guesslocale.c:42:9: warning: implicit declaration of function ‘toupper’ [-Wimplicit-function-declaration] --- a/src/guess.c +++ b/src/guess.c @@ -21,6 +21,7 @@ */ #include +#include /* strcmp */ #include #include --- a/src/guesslocale.c +++ b/src/guesslocale.c @@ -29,6 +29,7 @@ #include #endif +#include /* toupper */ #include #include #include