ref: 24dd64f7886173ed5df312260f9f9eabfe8b0981
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;
}