diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-23 11:17:41 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-23 11:17:41 +0000 |
commit | 64b8d39133a0c72de6e87f9436f07e089591a826 (patch) | |
tree | 74f7490630b33ca21ccf7f1be0d7982c2cd59f45 /libc/string/generic | |
parent | d5f635529a4dfe62b5ef565135b6f506040a66b0 (diff) |
Mark some functions as BSD only
Diffstat (limited to 'libc/string/generic')
-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 |