summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-03-23 11:17:41 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-03-23 11:17:41 +0000
commit64b8d39133a0c72de6e87f9436f07e089591a826 (patch)
tree74f7490630b33ca21ccf7f1be0d7982c2cd59f45 /libc/string
parentd5f635529a4dfe62b5ef565135b6f506040a66b0 (diff)
Mark some functions as BSD only
Diffstat (limited to 'libc/string')
-rw-r--r--libc/string/generic/strsep.c5
-rw-r--r--libc/string/strsep.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/libc/string/generic/strsep.c b/libc/string/generic/strsep.c
index 7b34e2c16..5cb1779d2 100644
--- a/libc/string/generic/strsep.c
+++ b/libc/string/generic/strsep.c
@@ -18,10 +18,12 @@
#include <string.h>
-libc_hidden_proto(strsep)
+#ifdef __USE_BSD
+
libc_hidden_proto(strchr)
libc_hidden_proto(strpbrk)
+libc_hidden_proto(strsep)
char *strsep (char **stringp, const char *delim)
{
char *begin, *end;
@@ -66,3 +68,4 @@ char *strsep (char **stringp, const char *delim)
return begin;
}
libc_hidden_def(strsep)
+#endif
diff --git a/libc/string/strsep.c b/libc/string/strsep.c
index 7f421891e..2cc940def 100644
--- a/libc/string/strsep.c
+++ b/libc/string/strsep.c
@@ -7,10 +7,12 @@
#include "_string.h"
-libc_hidden_proto(strsep)
+#ifdef __USE_BSD
+
libc_hidden_proto(strpbrk)
libc_hidden_proto(strcspn)
+libc_hidden_proto(strsep)
char *strsep(char ** __restrict s1, const char * __restrict s2)
{
register char *s = *s1;
@@ -32,3 +34,4 @@ char *strsep(char ** __restrict s1, const char * __restrict s2)
return s;
}
libc_hidden_def(strsep)
+#endif