2016-07-25 17:47:36 +08:00
|
|
|
/* Definition of opaque POSIX-1.2008 type locale_t for userspace. */
|
|
|
|
|
2017-03-22 04:21:30 +08:00
|
|
|
#ifndef _XLOCALE_H
|
|
|
|
#define _XLOCALE_H
|
2016-07-25 17:47:36 +08:00
|
|
|
|
|
|
|
#include <newlib.h>
|
|
|
|
#include <sys/config.h>
|
|
|
|
|
|
|
|
struct __locale_t;
|
|
|
|
typedef struct __locale_t *locale_t;
|
|
|
|
|
2017-03-22 04:21:30 +08:00
|
|
|
#endif /* _XLOCALE_H */
|