summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-18 01:09:55 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-18 01:09:55 +0000
commite8c6de1939e1f8a2898a0e53134fa175560b9469 (patch)
tree0d573525f6e657aa60bf04b4a7c3ddb9225f6347 /libc/string
parent508383b431a6ef45c0992fdd47064edb581c6214 (diff)
libc_hidden_proto removal, just a few functions
Diffstat (limited to 'libc/string')
-rw-r--r--libc/string/generic/memchr.c2
-rw-r--r--libc/string/generic/memrchr.c2
-rw-r--r--libc/string/generic/rawmemchr.c2
-rw-r--r--libc/string/generic/strchr.c2
-rw-r--r--libc/string/generic/strchrnul.c2
-rw-r--r--libc/string/generic/strlen.c2
-rw-r--r--libc/string/generic/strnlen.c2
7 files changed, 7 insertions, 7 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. */