diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-26 01:21:10 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-26 01:21:10 +0000 |
commit | d8ea341e64250c2f4636c559562e8904037eda74 (patch) | |
tree | 5df7693726ec3a9f73e4d622b8312d42e8f31e03 /libc/string/strcmp.c | |
parent | 873228f50b0a83833e0f498010ffe3dcc75a9258 (diff) |
libc/string: need additional work to remove libc_hidden_proto's properly
Diffstat (limited to 'libc/string/strcmp.c')
-rw-r--r-- | libc/string/strcmp.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/string/strcmp.c b/libc/string/strcmp.c index 5477adf3a..abae61812 100644 --- a/libc/string/strcmp.c +++ b/libc/string/strcmp.c @@ -15,8 +15,6 @@ # define Wstrcoll strcoll #endif -libc_hidden_proto(Wstrcmp) - int Wstrcmp(register const Wchar *s1, register const Wchar *s2) { #ifdef WANT_WIDE @@ -40,7 +38,6 @@ int Wstrcmp(register const Wchar *s1, register const Wchar *s2) libc_hidden_def(Wstrcmp) #ifndef __UCLIBC_HAS_LOCALE__ -libc_hidden_proto(Wstrcoll) strong_alias(Wstrcmp,Wstrcoll) libc_hidden_def(Wstrcoll) #endif |