diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-03 15:48:34 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-03 15:48:34 +0000 |
commit | fbf868b243b07b0e91e8da11086bc172d7c146da (patch) | |
tree | f8dac52d97fce8a94d3f3c57d669364a31d5cada /libc/string/strncasecmp.c | |
parent | b3250689637e8e07ae563cf97e5e85386d069228 (diff) |
Provide __tolower and use it
Diffstat (limited to 'libc/string/strncasecmp.c')
-rw-r--r-- | libc/string/strncasecmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/strncasecmp.c b/libc/string/strncasecmp.c index 96f31cabd..bfc865a8c 100644 --- a/libc/string/strncasecmp.c +++ b/libc/string/strncasecmp.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 |