diff options
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 4a44bf6..08362b1 100644 --- a/src/user/lib/include/stdlib.h +++ b/src/user/lib/include/stdlib.h @@ -24,3 +24,8 @@ int abs(int i); int atoi(const char *s); double atof(const char *s); + +long strtol(const char *restrict s, char **restrict end, int base); +unsigned long strtoul(const char *restrict s, char **restrict end, int base); +unsigned long long strtoull(const char *restrict s, char **restrict end, int base); +double strtod(const char *restrict s, char **restrict end); |