diff options
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 |