1 /* Copyright (c) 2016 Corinna Vinschen <corinna@vinschen.de> */ 2 /* Definition of opaque POSIX-1.2008 type locale_t for userspace. */ 3 4 #ifndef _SYS__LOCALE_H 5 #define _SYS__LOCALE_H 6 7 #include <newlib.h> 8 #include <sys/config.h> 9 10 struct __locale_t; 11 typedef struct __locale_t *locale_t; 12 13 #endif /* _SYS__LOCALE_H */ 14