diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2016-07-25 11:47:36 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-08-15 10:56:58 +0200 |
commit | 7156bf842e37fc07009d012c35309c5700f9f7cd (patch) | |
tree | 1aacfc2f6bc4468bc19f8caa066764864a60b23e /newlib/libc/include/sys/_locale.h | |
parent | 91ebe04042de36aba91cbf22711553a5591c4a5f (diff) | |
download | cygnal-7156bf842e37fc07009d012c35309c5700f9f7cd.tar.gz cygnal-7156bf842e37fc07009d012c35309c5700f9f7cd.tar.bz2 cygnal-7156bf842e37fc07009d012c35309c5700f9f7cd.zip |
Add sys/_locale.h header and fix up headers
Signed-off by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib/libc/include/sys/_locale.h')
-rw-r--r-- | newlib/libc/include/sys/_locale.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/newlib/libc/include/sys/_locale.h b/newlib/libc/include/sys/_locale.h new file mode 100644 index 000000000..ce6f9955c --- /dev/null +++ b/newlib/libc/include/sys/_locale.h @@ -0,0 +1,12 @@ +/* Definition of opaque POSIX-1.2008 type locale_t for userspace. */ + +#ifndef _SYS__LOCALE_H +#define _SYS__LOCALE_H + +#include <newlib.h> +#include <sys/config.h> + +struct __locale_t; +typedef struct __locale_t *locale_t; + +#endif /* _SYS__LOCALE_H */ |