summaryrefslogtreecommitdiff
path: root/libc/string/strcasecmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strcasecmp.c')
-rw-r--r--libc/string/strcasecmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/string/strcasecmp.c b/libc/string/strcasecmp.c
index 54ce7f8c7..8a7836d82 100644
--- a/libc/string/strcasecmp.c
+++ b/libc/string/strcasecmp.c
@@ -11,11 +11,12 @@
#include <locale.h>
#ifdef WANT_WIDE
-# include <wchar.h>
# define strcasecmp wcscasecmp
# define strcasecmp_l wcscasecmp_l
libc_hidden_proto(wcscasecmp)
+# if defined(__USE_GNU) && defined(__UCLIBC_HAS_XLOCALE__)
libc_hidden_proto(wcscasecmp_l)
+# endif
# ifdef __UCLIBC_DO_XLOCALE
libc_hidden_proto(towlower_l)
# define TOLOWER(C) towlower_l((C), locale_arg)