ref: 85b514f5c1368e93ba0f368366fd68db0a4eb3d6
dir: /lib/c/localeconv.c/
#include <locale.h>
#include <limits.h>
#undef localeconv
struct lconv *
localeconv(void)
{
static struct lconv lc = { ".", "", "", "", "", "", "", "", "", "",
CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
CHAR_MAX, CHAR_MAX };
return &lc;
}