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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/strcasecmp.c b/libc/string/strcasecmp.c
index 054bc01ae..1d758e2ca 100644
--- a/libc/string/strcasecmp.c
+++ b/libc/string/strcasecmp.c
@@ -32,7 +32,7 @@ extern wint_t __towlower_l (wint_t __wc, __locale_t __locale) __THROW attribute_
# ifdef __UCLIBC_DO_XLOCALE
# define TOLOWER(C) __tolower_l((C), locale_arg)
# else
-# define TOLOWER(C) tolower((C))
+# define TOLOWER(C) __tolower((C))
# endif
#endif