summaryrefslogtreecommitdiffstats
path: root/libc/string/strrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strrchr.c')
-rw-r--r--libc/string/strrchr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/string/strrchr.c b/libc/string/strrchr.c
index 67cafb75a..253c4166d 100644
--- a/libc/string/strrchr.c
+++ b/libc/string/strrchr.c
@@ -10,7 +10,7 @@
#ifdef WANT_WIDE
# define Wstrrchr wcsrchr
#else
-libc_hidden_proto(strrchr)
+/* Experimentally off - libc_hidden_proto(strrchr) */
# define Wstrrchr strrchr
#endif
@@ -28,8 +28,8 @@ Wchar *Wstrrchr(register const Wchar *s, Wint c)
return (Wchar *) p; /* silence the warning */
}
#ifndef WANT_WIDE
-libc_hidden_def(strrchr)
+libc_hidden_weak(strrchr)
# ifdef __UCLIBC_SUSV3_LEGACY__
-strong_alias(strrchr,rindex)
+weak_alias(strrchr,rindex)
# endif
#endif