mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
LibC: Bring the C library close enough to newlib to trick GCC.
Now we can build GCC with --with-newlib, which hopefully cuts down on weird toolchain build issues.
This commit is contained in:
parent
c02c6fef28
commit
34087a9f90
5 changed files with 83 additions and 95 deletions
|
@ -274,6 +274,14 @@ double strtod(const char* str, char** endptr)
|
|||
assert(false);
|
||||
}
|
||||
|
||||
float strtof(const char* str, char** endptr)
|
||||
{
|
||||
(void)str;
|
||||
(void)endptr;
|
||||
dbgprintf("LibC: strtof: '%s'\n", str);
|
||||
assert(false);
|
||||
}
|
||||
|
||||
double atof(const char* str)
|
||||
{
|
||||
dbgprintf("LibC: atof: '%s'\n", str);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue