diff options
author | dzwdz | 2022-09-02 23:56:18 +0200 |
---|---|---|
committer | dzwdz | 2022-09-02 23:56:18 +0200 |
commit | 6e4b9831f903e583d58de8b4265159f6d859ebc2 (patch) | |
tree | 9e941257df8898356d605a7f3398aa09d9b00ec9 /src/user/lib/include/stdlib.h | |
parent | e7770ccc0fab8f3a4b65bf2f7a1a11ad453f77e4 (diff) |
user/ports: bare minimum to run doomgeneric
Diffstat (limited to 'src/user/lib/include/stdlib.h')
-rw-r--r-- | src/user/lib/include/stdlib.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/user/lib/include/stdlib.h b/src/user/lib/include/stdlib.h index 8c827e3..2df0bf7 100644 --- a/src/user/lib/include/stdlib.h +++ b/src/user/lib/include/stdlib.h @@ -15,3 +15,8 @@ _Noreturn void exit(int); int mkstemp(char *template); char *getenv(const char *name); int system(const char *cmd); + +int abs(int i); + +int atoi(const char *s); +double atof(const char *s); |