LibC: Stub out wcstold

This commit is contained in:
Tim Schumacher 2021-09-22 12:38:01 +00:00 committed by Brian Gianforcaro
commit e82dc7c77a
Notes: sideshowbarker 2024-07-18 03:10:27 +09:00
2 changed files with 7 additions and 0 deletions

View file

@ -441,4 +441,10 @@ double wcstod(const wchar_t*, wchar_t**)
dbgln("TODO: Implement wcstod()");
TODO();
}
long double wcstold(const wchar_t*, wchar_t**)
{
dbgln("TODO: Implement wcstold()");
TODO();
}
}