From 8f0359605a24277e3d67f2b9e3477437a7d38706 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 20 Oct 2013 22:01:51 -0400 Subject: fix multiple minor namespace issues in headers fcntl.h: AT_* is not a reserved namespace so extensions cannot be exposed by default. langinfo.h: YESSTR and NOSTR were removed from the standard. limits.h: NL_NMAX was removed from the standard. signal.h: the conditional for NSIG was wrongly checking _XOPEN_SOURCE rather than _BSD_SOURCE. this was purely a mistake; it doesn't even match the commit message from the commit that added it. --- include/langinfo.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/langinfo.h') diff --git a/include/langinfo.h b/include/langinfo.h index c6349ad1..2153c42e 100644 --- a/include/langinfo.h +++ b/include/langinfo.h @@ -5,6 +5,7 @@ extern "C" { #endif +#include #include #define __NEED_locale_t @@ -75,8 +76,11 @@ extern "C" { #define THOUSEP 0x10001 #define YESEXPR 0x50000 #define NOEXPR 0x50001 + +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define YESSTR 0x50002 #define NOSTR 0x50003 +#endif char *nl_langinfo(nl_item); char *nl_langinfo_l(nl_item, locale_t); -- cgit v1.2.1