From e2f6a3257e256ac26a755fb58290ceb1b839fa20 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 13 Sep 2012 21:01:30 -0400 Subject: [PATCH] strsep is BSD|GNU, not GNU-only; it's originally from BSD --- include/string.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.20.1