diff --git a/LibC/locale.cpp b/LibC/locale.cpp index a85af30784..9d6f4d65a8 100644 --- a/LibC/locale.cpp +++ b/LibC/locale.cpp @@ -4,10 +4,14 @@ extern "C" { +static char default_decimal_point[] = "."; +static char default_thousands_sep[] = ","; +static char default_grouping[] = "\x03\x03"; + static struct lconv default_locale = { - ".", - ",", - "\x03\x03", + default_decimal_point, + default_thousands_sep, + default_grouping, }; char* setlocale(int category, const char* locale)