1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:27:45 +00:00

LibC: Fix locale.cpp warnings.

This commit is contained in:
Andreas Kling 2019-06-22 14:32:59 +02:00
parent bd4ac6d42e
commit 56ae96558b

View file

@ -4,10 +4,14 @@
extern "C" { extern "C" {
static char default_decimal_point[] = ".";
static char default_thousands_sep[] = ",";
static char default_grouping[] = "\x03\x03";
static struct lconv default_locale = { static struct lconv default_locale = {
".", default_decimal_point,
",", default_thousands_sep,
"\x03\x03", default_grouping,
}; };
char* setlocale(int category, const char* locale) char* setlocale(int category, const char* locale)