You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/lv/files/lv-4.51-protos.patch

30 lines
874 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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]
diff --git a/src/guess.c b/src/guess.c
index facd95e..555acd3 100644
--- a/src/guess.c
+++ b/src/guess.c
@@ -21,6 +21,7 @@
*/
#include <stdio.h>
+#include <string.h> /* strcmp */
#include <import.h>
#include <decode.h>
diff --git a/src/guesslocale.c b/src/guesslocale.c
index 7974c88..c259723 100644
--- a/src/guesslocale.c
+++ b/src/guesslocale.c
@@ -29,6 +29,7 @@
#include <langinfo.h>
#endif
+#include <ctype.h> /* toupper */
#include <import.h>
#include <ctable.h>
#include <begin.h>