From d1eae83a593309842550988e9c56492fac9cdece Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 26 Feb 2013 01:30:36 -0500 Subject: [PATCH] namespace conformance to latest standards in strings.h --- include/strings.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/include/strings.h b/include/strings.h index 345c6517..2b7e086c 100644 --- a/include/strings.h +++ b/include/strings.h @@ -10,15 +10,17 @@ extern "C" { #define __NEED_locale_t #include - +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) || defined(_POSIX_SOURCE) \ + || (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE+0 < 200809L) \ + || (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE+0 < 700) int bcmp (const void *, const void *, size_t); void bcopy (const void *, void *, size_t); void bzero (void *, size_t); - -int ffs (int); - char *index (const char *, int); char *rindex (const char *, int); +#endif + +int ffs (int); int strcasecmp (const char *, const char *); int strncasecmp (const char *, const char *, size_t); -- 2.20.1