diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-03 15:25:34 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-03 15:25:34 +0000 |
commit | ab1677f52570f1a132dee3c0e8fdb95a0036554d (patch) | |
tree | 74584615c8481ab381e76214b8055428c3129020 /libc/string/strcasecmp.c | |
parent | 167d5e33fcb821e51e2f9dcf460591737c3c7972 (diff) |
Revert a change until I find the textrel cause
Diffstat (limited to 'libc/string/strcasecmp.c')
-rw-r--r-- | libc/string/strcasecmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/strcasecmp.c b/libc/string/strcasecmp.c index 1d758e2ca..054bc01ae 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 |