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

LibC: Remove FIXME spam in setlocale()

This commit is contained in:
Andreas Kling 2021-02-11 23:31:21 +01:00
parent 95064f8b58
commit 3c7782fdbe

View file

@ -65,9 +65,8 @@ static struct lconv default_locale = {
default_empty_value default_empty_value
}; };
char* setlocale(int category, const char* locale) char* setlocale(int, const char*)
{ {
dbgln("FIXME(LibC): setlocale({}, '{}')", category, locale);
return nullptr; return nullptr;
} }