fix feature test macro logic for _BSD_SOURCE

in several places, _BSD_SOURCE was not even implying POSIX, resulting
in it being subtractive rather than additive (compared to the default
features).
This commit is contained in:
Rich Felker
2013-08-02 18:14:44 -04:00
parent 0c7294ef30
commit 2e5dfa515f
3 changed files with 7 additions and 7 deletions

View File

@ -51,7 +51,7 @@ struct lconv *localeconv(void);
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
#define __NEED_locale_t