diff options
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/generic/memchr.c | 2 | ||||
-rw-r--r-- | libc/string/generic/memrchr.c | 2 | ||||
-rw-r--r-- | libc/string/generic/rawmemchr.c | 2 | ||||
-rw-r--r-- | libc/string/generic/strchr.c | 2 | ||||
-rw-r--r-- | libc/string/generic/strchrnul.c | 2 | ||||
-rw-r--r-- | libc/string/generic/strlen.c | 2 | ||||
-rw-r--r-- | libc/string/generic/strnlen.c | 2 | ||||
-rw-r--r-- | libc/string/psignal.c | 2 | ||||
-rw-r--r-- | libc/string/strcasecmp.c | 2 | ||||
-rw-r--r-- | libc/string/strcasestr.c | 4 | ||||
-rw-r--r-- | libc/string/strncasecmp.c | 2 |
11 files changed, 12 insertions, 12 deletions
diff --git a/libc/string/generic/memchr.c b/libc/string/generic/memchr.c index 3c7c997bc..8ea3f539a 100644 --- a/libc/string/generic/memchr.c +++ b/libc/string/generic/memchr.c @@ -26,7 +26,7 @@ #include <limits.h> /* Experimentally off - libc_hidden_proto(memchr) */ -libc_hidden_proto(abort) +/* libc_hidden_proto(abort) */ #include "memcopy.h" diff --git a/libc/string/generic/memrchr.c b/libc/string/generic/memrchr.c index 9ab805cf7..95fe1d4d8 100644 --- a/libc/string/generic/memrchr.c +++ b/libc/string/generic/memrchr.c @@ -28,7 +28,7 @@ #ifdef __USE_GNU /* Experimentally off - libc_hidden_proto(memrchr) */ -libc_hidden_proto(abort) +/* libc_hidden_proto(abort) */ #include "memcopy.h" diff --git a/libc/string/generic/rawmemchr.c b/libc/string/generic/rawmemchr.c index f8b97a61d..5242734f1 100644 --- a/libc/string/generic/rawmemchr.c +++ b/libc/string/generic/rawmemchr.c @@ -27,7 +27,7 @@ #ifdef __USE_GNU /* Experimentally off - libc_hidden_proto(rawmemchr) */ -libc_hidden_proto(abort) +/* libc_hidden_proto(abort) */ #include "memcopy.h" diff --git a/libc/string/generic/strchr.c b/libc/string/generic/strchr.c index 66aed1e25..91de3f4aa 100644 --- a/libc/string/generic/strchr.c +++ b/libc/string/generic/strchr.c @@ -25,7 +25,7 @@ #include <stdlib.h> /* Experimentally off - libc_hidden_proto(strchr) */ -libc_hidden_proto(abort) +/* libc_hidden_proto(abort) */ #include "memcopy.h" diff --git a/libc/string/generic/strchrnul.c b/libc/string/generic/strchrnul.c index 72cab2891..6a25b1c0c 100644 --- a/libc/string/generic/strchrnul.c +++ b/libc/string/generic/strchrnul.c @@ -26,7 +26,7 @@ #ifdef __USE_GNU /* Experimentally off - libc_hidden_proto(strchrnul) */ -libc_hidden_proto(abort) +/* libc_hidden_proto(abort) */ #include "memcopy.h" diff --git a/libc/string/generic/strlen.c b/libc/string/generic/strlen.c index 764dae18d..be899d330 100644 --- a/libc/string/generic/strlen.c +++ b/libc/string/generic/strlen.c @@ -23,7 +23,7 @@ #include <stdlib.h> /* Experimentally off - libc_hidden_proto(strlen) */ -libc_hidden_proto(abort) +/* libc_hidden_proto(abort) */ /* Return the length of the null-terminated string STR. Scan for the null terminator quickly by testing four bytes at a time. */ diff --git a/libc/string/generic/strnlen.c b/libc/string/generic/strnlen.c index d9ba76129..0bc517a84 100644 --- a/libc/string/generic/strnlen.c +++ b/libc/string/generic/strnlen.c @@ -26,7 +26,7 @@ #ifdef __USE_GNU /* Experimentally off - libc_hidden_proto(strnlen) */ -libc_hidden_proto(abort) +/* libc_hidden_proto(abort) */ /* Find the length of S, but scan at most MAXLEN characters. If no '\0' terminator is found in that many characters, return MAXLEN. */ diff --git a/libc/string/psignal.c b/libc/string/psignal.c index 1ca8725db..e4498528a 100644 --- a/libc/string/psignal.c +++ b/libc/string/psignal.c @@ -10,7 +10,7 @@ #include <string.h> #include <signal.h> -libc_hidden_proto(fprintf) +/* libc_hidden_proto(fprintf) */ /* Experimentally off - libc_hidden_proto(strsignal) */ /* TODO: make this threadsafe with a reentrant version of strsignal? */ diff --git a/libc/string/strcasecmp.c b/libc/string/strcasecmp.c index f9852236b..5f2dc8e04 100644 --- a/libc/string/strcasecmp.c +++ b/libc/string/strcasecmp.c @@ -31,7 +31,7 @@ libc_hidden_proto(tolower_l) # define TOLOWER(C) tolower_l((C), locale_arg) # else #if !defined __UCLIBC_HAS_XLOCALE__ && defined __UCLIBC_HAS_CTYPE_TABLES__ -libc_hidden_proto(__ctype_tolower) +/* libc_hidden_proto(__ctype_tolower) */ #endif libc_hidden_proto(tolower) # define TOLOWER(C) tolower((C)) diff --git a/libc/string/strcasestr.c b/libc/string/strcasestr.c index 2671b4b98..143392d3a 100644 --- a/libc/string/strcasestr.c +++ b/libc/string/strcasestr.c @@ -9,9 +9,9 @@ #include <ctype.h> #ifdef __UCLIBC_HAS_XLOCALE__ -libc_hidden_proto(__ctype_tolower_loc) +/* libc_hidden_proto(__ctype_tolower_loc) */ #elif defined __UCLIBC_HAS_CTYPE_TABLES__ -libc_hidden_proto(__ctype_tolower) +/* libc_hidden_proto(__ctype_tolower) */ #endif libc_hidden_proto(tolower) diff --git a/libc/string/strncasecmp.c b/libc/string/strncasecmp.c index ed052fa21..83efd85a7 100644 --- a/libc/string/strncasecmp.c +++ b/libc/string/strncasecmp.c @@ -31,7 +31,7 @@ libc_hidden_proto(tolower_l) # define TOLOWER(C) tolower_l((C), locale_arg) # else #if !defined __UCLIBC_HAS_XLOCALE__ && defined __UCLIBC_HAS_CTYPE_TABLES__ -libc_hidden_proto(__ctype_tolower) +/* libc_hidden_proto(__ctype_tolower) */ #endif libc_hidden_proto(tolower) # define TOLOWER(C) tolower((C)) |