You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
235 B
C
13 lines
235 B
C
4 years ago
|
/* 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 */
|