From 64b8d39133a0c72de6e87f9436f07e089591a826 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 23 Mar 2006 11:17:41 +0000 Subject: Mark some functions as BSD only --- libc/string/strsep.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libc/string/strsep.c') 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 -- cgit v1.2.3