diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-02 05:49:58 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-02 05:49:58 +0000 |
commit | ad636db9fe434e86b312f501ae794fdb5a91c92e (patch) | |
tree | db42e67b34bc40ccdd0d5ce099be82af597e9e63 /libc/string/strncasecmp.c | |
parent | 0119403c3acb30557f5efdf8aacb378bed6a6e8e (diff) |
fix fallout from libc_hidden_proto removal
Diffstat (limited to 'libc/string/strncasecmp.c')
-rw-r--r-- | libc/string/strncasecmp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/string/strncasecmp.c b/libc/string/strncasecmp.c index fea9006cb..ab84be7ba 100644 --- a/libc/string/strncasecmp.c +++ b/libc/string/strncasecmp.c @@ -14,7 +14,9 @@ # define strncasecmp wcsncasecmp # define strncasecmp_l wcsncasecmp_l libc_hidden_proto(wcsncasecmp) +# if defined(__USE_GNU) && defined(__UCLIBC_HAS_XLOCALE__) libc_hidden_proto(wcsncasecmp_l) +# endif # ifdef __UCLIBC_DO_XLOCALE libc_hidden_proto(towlower_l) # define TOLOWER(C) towlower_l((C), locale_arg) |