ref: 16ea0054046e540a90a8a44fd81c0f7b4ae8024d
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;
}