summaryrefslogtreecommitdiff
path: root/libc/string/generic/strchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/generic/strchr.c')
-rw-r--r--libc/string/generic/strchr.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/libc/string/generic/strchr.c b/libc/string/generic/strchr.c
index d0745060b..06476d448 100644
--- a/libc/string/generic/strchr.c
+++ b/libc/string/generic/strchr.c
@@ -29,8 +29,7 @@
#undef strchr
/* Find the first occurrence of C in S. */
-char *
-strchr (s, c_in)
+char attribute_hidden *__strchr (s, c_in)
const char *s;
int c_in;
{
@@ -184,7 +183,6 @@ strchr (s, c_in)
return NULL;
}
-#ifdef weak_alias
-#undef index
-weak_alias (strchr, index)
-#endif
+strong_alias(__strchr, strchr)
+
+weak_alias(strchr, index)