LibC: Remove FIXME spam in setlocale()

This commit is contained in:
Andreas Kling 2021-02-11 23:31:21 +01:00
commit 3c7782fdbe
Notes: sideshowbarker 2024-07-18 22:25:13 +09:00

View file

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