From 21730caa6647f645974e132ca8afec79b4eeab2b Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 18 Sep 2009 20:57:40 +0200 Subject: trim Experimentally off and uncommented hidden sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer --- libc/string/cris/memcpy.c | 1 - libc/string/cris/memmove.c | 1 - libc/string/cris/memset.c | 1 - libc/string/cris/strcpy.c | 1 - libc/string/cris/strncpy.c | 2 -- 5 files changed, 6 deletions(-) (limited to 'libc/string/cris') diff --git a/libc/string/cris/memcpy.c b/libc/string/cris/memcpy.c index 94ece0512..94e576f4f 100644 --- a/libc/string/cris/memcpy.c +++ b/libc/string/cris/memcpy.c @@ -44,7 +44,6 @@ /* No name ambiguities in this file. */ __asm__ (".syntax no_register_prefix"); -/* Experimentally off - libc_hidden_proto(memcpy) */ void * memcpy(void *pdst, const void *psrc, size_t pn) { diff --git a/libc/string/cris/memmove.c b/libc/string/cris/memmove.c index fa495eba4..4184fc96d 100644 --- a/libc/string/cris/memmove.c +++ b/libc/string/cris/memmove.c @@ -27,7 +27,6 @@ #include "memcopy.h" #include "../generic/pagecopy.h" -/* Experimentally off - libc_hidden_proto(memmove) */ void *memmove (void *dest, const void *src, size_t len) { unsigned long int dstp = (long int) dest; diff --git a/libc/string/cris/memset.c b/libc/string/cris/memset.c index f4c5bb685..fab4e8b66 100644 --- a/libc/string/cris/memset.c +++ b/libc/string/cris/memset.c @@ -46,7 +46,6 @@ /* No name ambiguities in this file. */ __asm__ (".syntax no_register_prefix"); -/* Experimentally off - libc_hidden_proto(memset) */ void *memset(void *pdst, int c, unsigned int plen) { /* Now we want the parameters in special registers. Make sure the diff --git a/libc/string/cris/strcpy.c b/libc/string/cris/strcpy.c index 955a990b7..40e6389b9 100644 --- a/libc/string/cris/strcpy.c +++ b/libc/string/cris/strcpy.c @@ -6,7 +6,6 @@ #include -/* Experimentally off - libc_hidden_proto(strcpy) */ char *strcpy(char *dest, const char *src) { char *ret = dest; diff --git a/libc/string/cris/strncpy.c b/libc/string/cris/strncpy.c index 3f2775bdd..8d074071a 100644 --- a/libc/string/cris/strncpy.c +++ b/libc/string/cris/strncpy.c @@ -6,9 +6,7 @@ #include -/* Experimentally off - libc_hidden_proto(memset) */ -/* Experimentally off - libc_hidden_proto(strncpy) */ char *strncpy(char *dest, const char *src, size_t count) { char *ret = dest; -- cgit v1.2.3