diff options
author | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2018-08-23 12:13:02 +0200 |
---|---|---|
committer | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2018-08-24 15:00:01 +0200 |
commit | 5d29023c110473e13beff16607d85a49673f2b7b (patch) | |
tree | 9504aec0d581b9365fa4fe100a9b4d7af640a533 | |
parent | 36cb95f6028d8e0f2c736a66a4189027aecd5566 (diff) | |
download | cygnal-5d29023c110473e13beff16607d85a49673f2b7b.tar.gz cygnal-5d29023c110473e13beff16607d85a49673f2b7b.tar.bz2 cygnal-5d29023c110473e13beff16607d85a49673f2b7b.zip |
Add __nl_item to <sys/_types.h> and use it
Add __nl_item to <sys/_types.h> for FreeBSD compatibility. Use it in
<langinfo.h> and the Cygwin <nl_types.h>. Make the enum __nl_item in
<langinfo.h> anonymous.
Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
-rw-r--r-- | newlib/libc/include/langinfo.h | 7 | ||||
-rw-r--r-- | newlib/libc/include/sys/_types.h | 1 | ||||
-rw-r--r-- | winsup/cygwin/include/nl_types.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/include/langinfo.h b/newlib/libc/include/langinfo.h index 458b92565..d2b7a031c 100644 --- a/newlib/libc/include/langinfo.h +++ b/newlib/libc/include/langinfo.h @@ -29,19 +29,18 @@ #ifndef _LANGINFO_H_ #define _LANGINFO_H_ -#include <newlib.h> -#include <sys/config.h> #include <sys/cdefs.h> +#include <sys/_types.h> #if __POSIX_VISIBLE >= 200809 #include <xlocale.h> #endif #ifndef _NL_ITEM_DECLARED -typedef int nl_item; +typedef __nl_item nl_item; #define _NL_ITEM_DECLARED #endif -enum __nl_item +enum { /* POSIX and BSD defined items have to stick to the original values to maintain backward compatibility. */ diff --git a/newlib/libc/include/sys/_types.h b/newlib/libc/include/sys/_types.h index d8e8c0b52..fc10531d5 100644 --- a/newlib/libc/include/sys/_types.h +++ b/newlib/libc/include/sys/_types.h @@ -210,6 +210,7 @@ typedef __uint8_t __sa_family_t; typedef __uint32_t __socklen_t; #endif +typedef int __nl_item; typedef unsigned short __nlink_t; typedef long __suseconds_t; /* microseconds (signed) */ typedef unsigned long __useconds_t; /* microseconds (unsigned) */ diff --git a/winsup/cygwin/include/nl_types.h b/winsup/cygwin/include/nl_types.h index b9c06f6c3..c57cfef0b 100644 --- a/winsup/cygwin/include/nl_types.h +++ b/winsup/cygwin/include/nl_types.h @@ -87,7 +87,7 @@ typedef struct __nl_cat_d { #ifndef _NL_ITEM_DECLARED -typedef int nl_item; +typedef __nl_item nl_item; #define _NL_ITEM_DECLARED #endif |