1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:37:34 +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:
Andreas Kling 2019-04-17 23:13:07 +02:00
parent c02c6fef28
commit 34087a9f90
5 changed files with 83 additions and 95 deletions

View file

@ -20,6 +20,7 @@ int atoi(const char*);
long atol(const char*);
long long atoll(const char*);
double strtod(const char*, char** endptr);
float strtof(const char*, char** endptr);
long strtol(const char*, char** endptr, int base);
unsigned long strtoul(const char*, char** endptr, int base);
void qsort(void* base, size_t nmemb, size_t size, int (*compar)(const void*, const void*));