Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2016-03-15 01:20:38 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2016-03-18 05:09:09 +0300
commit6fe6a822ee64a63017a85bcc9006969e2d53a532 (patch)
treefb6f91f204c4d46c5007a0d3f8a213039d5d901d /newlib/libc
parent615d63599b4bd5afbcf215737c78c3e430e34cd5 (diff)
Feature test macros overhaul: strings.h
Replace __STRICT_ANSI__ with the proper internal macros for bcmp etc. Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc')
-rw-r--r--newlib/libc/include/strings.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/include/strings.h b/newlib/libc/include/strings.h
index 131d81d20..fdccfca30 100644
--- a/newlib/libc/include/strings.h
+++ b/newlib/libc/include/strings.h
@@ -9,12 +9,12 @@
#include "_ansi.h"
#include <sys/reent.h>
-
+#include <sys/cdefs.h>
#include <sys/types.h> /* for size_t */
_BEGIN_STD_C
-#if !defined __STRICT_ANSI__ && _POSIX_VERSION < 200809L
+#if __BSD_VISIBLE || (__POSIX_VISIBLE && __POSIX_VISIBLE < 200809)
/*
* Marked LEGACY in Open Group Base Specifications Issue 6/IEEE Std 1003.1-2004
* Removed from Open Group Base Specifications Issue 7/IEEE Std 1003.1-2008
@@ -24,7 +24,7 @@ void _EXFUN(bcopy,(const void *, void *, size_t));
void _EXFUN(bzero,(void *, size_t));
char *_EXFUN(index,(const char *, int));
char *_EXFUN(rindex,(const char *, int));
-#endif /* ! __STRICT_ANSI__ */
+#endif /* __BSD_VISIBLE || (__POSIX_VISIBLE && __POSIX_VISIBLE < 200809) */
int _EXFUN(ffs,(int));
int _EXFUN(strcasecmp,(const char *, const char *));