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

LibC: Stub out wcstod

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

View file

@ -435,4 +435,10 @@ float wcstof(const wchar_t*, wchar_t**)
dbgln("TODO: Implement wcstof()");
TODO();
}
double wcstod(const wchar_t*, wchar_t**)
{
dbgln("TODO: Implement wcstod()");
TODO();
}
}