diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-06-19 07:24:59 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-06-19 07:24:59 +0000 |
commit | 4295030e50db499e51d397af2f2c3a69cc13d96d (patch) | |
tree | 7d8065b8c01b30789f132332e7c8e4116bcf0f83 /libc/string/strdup.c | |
parent | fd5b87c1ff55e5c562d0387df2137608b73502ab (diff) | |
download | uClibc-alpine-4295030e50db499e51d397af2f2c3a69cc13d96d.tar.bz2 uClibc-alpine-4295030e50db499e51d397af2f2c3a69cc13d96d.tar.xz |
libc_hidden_proto moved to string.h
Diffstat (limited to 'libc/string/strdup.c')
-rw-r--r-- | libc/string/strdup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/string/strdup.c b/libc/string/strdup.c index d15345d0d..61fc186c8 100644 --- a/libc/string/strdup.c +++ b/libc/string/strdup.c @@ -13,12 +13,12 @@ libc_hidden_proto(wcslen) # define Wstrdup wcsdup # define Wstrlen wcslen #else -libc_hidden_proto(strdup) -libc_hidden_proto(strlen) +/* Experimentally off - libc_hidden_proto(strdup) */ +/* Experimentally off - libc_hidden_proto(strlen) */ # define Wstrdup strdup # define Wstrlen strlen #endif -libc_hidden_proto(memcpy) +/* Experimentally off - libc_hidden_proto(memcpy) */ Wchar *Wstrdup(register const Wchar *s1) { @@ -33,5 +33,5 @@ Wchar *Wstrdup(register const Wchar *s1) } #ifndef WANT_WIDE -libc_hidden_def(strdup) +libc_hidden_weak(strdup) #endif |