1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:07:36 +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" {
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)