From: Rich Felker Date: Fri, 14 Sep 2012 01:01:30 +0000 (-0400) Subject: strsep is BSD|GNU, not GNU-only; it's originally from BSD X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=e2f6a3257e256ac26a755fb58290ceb1b839fa20;ds=sidebyside strsep is BSD|GNU, not GNU-only; it's originally from BSD --- diff --git a/include/string.h b/include/string.h index 5587c880..3a0868b7 100644 --- a/include/string.h +++ b/include/string.h @@ -79,6 +79,10 @@ size_t strxfrm_l (char *__restrict, const char *__restrict, size_t, locale_t); void *memccpy (void *__restrict, const void *__restrict, int, size_t); #endif +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) +char *strsep(char **, const char *); +#endif + #ifdef _BSD_SOURCE size_t strlcat (char *, const char *, size_t); size_t strlcpy (char *, const char *, size_t); @@ -91,7 +95,6 @@ int strcasecmp_l (const char *, const char *, locale_t); int strncasecmp_l (const char *, const char *, size_t, locale_t); char *strchrnul(const char *, int); char *strcasestr(const char *, const char *); -char *strsep(char **, const char *); void *memrchr(const void *, int, size_t); void *mempcpy(void *, const void *, size_t); #ifndef __cplusplus