handle non-matching address family entries in hosts file
[musl] / include / langinfo.h
index 4d9e099..2153c42 100644 (file)
@@ -5,7 +5,10 @@
 extern "C" {
 #endif
 
-#define __NEED_nl_item
+#include <features.h>
+#include <nl_types.h>
+
+#define __NEED_locale_t
 
 #include <bits/alltypes.h>
 
@@ -73,10 +76,14 @@ 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);
 
 #ifdef __cplusplus
 }