mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
LibC: Return a default locale from localeconv(). (For GCC 8.3.0)
This commit is contained in:
@@ -4,6 +4,12 @@
|
||||
|
||||
extern "C" {
|
||||
|
||||
static struct lconv default_locale = {
|
||||
".",
|
||||
",",
|
||||
"\x03\x03",
|
||||
};
|
||||
|
||||
char* setlocale(int category, const char* locale)
|
||||
{
|
||||
dbgprintf("FIXME(LibC): setlocale(%d, %s)\n", category, locale);
|
||||
@@ -12,7 +18,7 @@ char* setlocale(int category, const char* locale)
|
||||
|
||||
struct lconv* localeconv()
|
||||
{
|
||||
assert(false);
|
||||
return &default_locale;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user