blob: 94bb62a0ca6ac77a09f81f9530a1b1885d562216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "_locale.h"
/*
This implementation only supports a single, global locale. A second
implementation will be needed for POSIX.1-2008 per-thread locales.
*/
struct __locale_t * __get_locale(void)
{
static struct __locale_t l;
return &l;
}
|