mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 19:05:08 +00:00
LibC: Stub out wcstold
This commit is contained in:
parent
893d9e8741
commit
e82dc7c77a
2 changed files with 7 additions and 0 deletions
|
@ -441,4 +441,10 @@ double wcstod(const wchar_t*, wchar_t**)
|
||||||
dbgln("TODO: Implement wcstod()");
|
dbgln("TODO: Implement wcstod()");
|
||||||
TODO();
|
TODO();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
long double wcstold(const wchar_t*, wchar_t**)
|
||||||
|
{
|
||||||
|
dbgln("TODO: Implement wcstold()");
|
||||||
|
TODO();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,5 +51,6 @@ unsigned long wcstoul(const wchar_t*, wchar_t**, int);
|
||||||
unsigned long long wcstoull(const wchar_t*, wchar_t**, int);
|
unsigned long long wcstoull(const wchar_t*, wchar_t**, int);
|
||||||
float wcstof(const wchar_t*, wchar_t**);
|
float wcstof(const wchar_t*, wchar_t**);
|
||||||
double wcstod(const wchar_t*, wchar_t**);
|
double wcstod(const wchar_t*, wchar_t**);
|
||||||
|
long double wcstold(const wchar_t*, wchar_t**);
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue