1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:27:46 +00:00

Add really cheap atol() since sizeof(int) == sizeof(long) here anyway.

This commit is contained in:
Andreas Kling 2018-11-11 10:40:50 +01:00
parent f394e3486a
commit 9b70808ab5
2 changed files with 8 additions and 1 deletions

View file

@ -11,6 +11,7 @@ void* calloc(size_t nmemb, size_t);
void* realloc(void *ptr, size_t);
char* getenv(const char* name);
int atoi(const char*);
long atol(const char*);
void exit(int status) __NORETURN;
void abort() __NORETURN;