mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
LibC: Stub out btowc
wint_t is also not supposed to be defined by sys/types.h, but should be defined in wchar.h instead. Since we require it for our definition of btowc, let's move it to the correct place.
This commit is contained in:
parent
ccef5fe234
commit
d364abe4d5
3 changed files with 9 additions and 2 deletions
|
@ -153,4 +153,10 @@ long long wcstoll(const wchar_t*, wchar_t**, int)
|
|||
dbgln("FIXME: Implement wcstoll()");
|
||||
TODO();
|
||||
}
|
||||
|
||||
wint_t btowc(int)
|
||||
{
|
||||
dbgln("FIXME: Implement btowc()");
|
||||
TODO();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue