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

LibC: Stub out wcstof

This commit is contained in:
Tim Schumacher 2021-09-22 12:26:01 +00:00 committed by Brian Gianforcaro
parent 783ddd261d
commit e0548692ac
2 changed files with 7 additions and 0 deletions

View file

@ -429,4 +429,10 @@ unsigned long long wcstoull(const wchar_t*, wchar_t**, int)
dbgln("TODO: Implement wcstoull()");
TODO();
}
float wcstof(const wchar_t*, wchar_t**)
{
dbgln("TODO: Implement wcstof()");
TODO();
}
}