mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 22:27:42 +00:00
LibC: A bunch of compat work towards porting GCC.
This commit is contained in:
parent
9fd4f4862b
commit
93c0dfd1d7
18 changed files with 166 additions and 13 deletions
|
@ -309,4 +309,24 @@ size_t mbstowcs(wchar_t*, const char*, size_t)
|
|||
assert(false);
|
||||
}
|
||||
|
||||
int atexit(void (*function)())
|
||||
{
|
||||
(void)function;
|
||||
assert(false);
|
||||
}
|
||||
|
||||
long strtol(const char*, char** endptr, int base)
|
||||
{
|
||||
(void)endptr;
|
||||
(void)base;
|
||||
assert(false);
|
||||
}
|
||||
|
||||
unsigned long strtoul(const char*, char** endptr, int base)
|
||||
{
|
||||
(void)endptr;
|
||||
(void)base;
|
||||
assert(false);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue