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;
} lconv;
struct lconv *
localeconv(void)
{ static struct lconv defl =
static struct lconv defl =
{ ".",
",",
"\003\003"
};
struct lconv *
localeconv(void)
{
return &defl;
}
#endif