diff options
Diffstat (limited to 'libc/string/generic/strsep.c')
-rw-r--r-- | libc/string/generic/strsep.c | 5 |
1 files changed, 4 insertions, 1 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 |