mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:48:11 +00:00
Some compat work towards making GCC's libstdc++ build.
This commit is contained in:
parent
93c0dfd1d7
commit
0b957ed2b1
9 changed files with 120 additions and 11 deletions
|
@ -16,14 +16,18 @@ void* realloc(void *ptr, size_t);
|
|||
char* getenv(const char* name);
|
||||
int atoi(const char*);
|
||||
long atol(const char*);
|
||||
double strtod(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 *));
|
||||
int atexit(void (*function)());
|
||||
__attribute__((noreturn)) void exit(int status);
|
||||
__attribute__((noreturn)) void abort();
|
||||
char* ptsname(int fd);
|
||||
int ptsname_r(int fd, char* buffer, size_t);
|
||||
int abs(int);
|
||||
long labs(long);
|
||||
double atof(const char*);
|
||||
int system(const char* command);
|
||||
char* mktemp(char*);
|
||||
void* bsearch(const void* key, const void* base, size_t nmemb, size_t size, int (*compar)(const void *, const void *));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue