better safe than..

This commit is contained in:
Vítor Santos Costa 2014-10-19 01:43:14 +01:00
parent ba03f1da65
commit 71c587bec1

View File

@ -54,14 +54,15 @@ typedef struct
char *grouping; char *grouping;
} lconv; } lconv;
struct lconv * static struct lconv defl =
localeconv(void)
{ static struct lconv defl =
{ ".", { ".",
",", ",",
"\003\003" "\003\003"
}; };
struct lconv *
localeconv(void)
{
return &defl; return &defl;
} }
#endif #endif