From 4295030e50db499e51d397af2f2c3a69cc13d96d Mon Sep 17 00:00:00 2001 From: Carmelo Amoroso Date: Thu, 19 Jun 2008 07:24:59 +0000 Subject: libc_hidden_proto moved to string.h --- libc/string/generic/strrchr.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libc/string/generic/strrchr.c') diff --git a/libc/string/generic/strrchr.c b/libc/string/generic/strrchr.c index 97192da95..c85707241 100644 --- a/libc/string/generic/strrchr.c +++ b/libc/string/generic/strrchr.c @@ -18,8 +18,8 @@ #include -libc_hidden_proto(strrchr) -libc_hidden_proto(strchr) +/* Experimentally off - libc_hidden_proto(strrchr) */ +/* Experimentally off - libc_hidden_proto(strchr) */ /* Find the last occurrence of C in S. */ char *strrchr (const char *s, int c) @@ -42,7 +42,7 @@ char *strrchr (const char *s, int c) return (char *) found; } -libc_hidden_def(strrchr) +libc_hidden_weak(strrchr) #ifdef __UCLIBC_SUSV3_LEGACY__ -strong_alias(strrchr,rindex) +weak_alias(strrchr,rindex) #endif -- cgit v1.2.3