diff options
Diffstat (limited to 'newlib/libc/include/xlocale.h')
-rw-r--r-- | newlib/libc/include/xlocale.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/newlib/libc/include/xlocale.h b/newlib/libc/include/xlocale.h new file mode 100644 index 000000000..f9554269c --- /dev/null +++ b/newlib/libc/include/xlocale.h @@ -0,0 +1,12 @@ +/* Definition of opaque POSIX-1.2008 type locale_t for userspace. */ + +#ifndef _XLOCALE_H +#define _XLOCALE_H + +#include <newlib.h> +#include <sys/config.h> + +struct __locale_t; +typedef struct __locale_t *locale_t; + +#endif /* _XLOCALE_H */ |