diff options
Diffstat (limited to 'libc/string/cris')
-rw-r--r-- | libc/string/cris/memcpy.c | 1 | ||||
-rw-r--r-- | libc/string/cris/memmove.c | 1 | ||||
-rw-r--r-- | libc/string/cris/memset.c | 1 | ||||
-rw-r--r-- | libc/string/cris/strcpy.c | 1 | ||||
-rw-r--r-- | libc/string/cris/strncpy.c | 2 |
5 files changed, 0 insertions, 6 deletions
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 <string.h> -/* 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 <string.h> -/* 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; |