diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2021-10-24 02:50:44 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2021-10-24 03:10:03 +0200 |
| commit | cbd551e8a326c56472f1423b298cd032711578a4 (patch) | |
| tree | 6834e5af68fc4415bf2405085172bcd48ea08acd /libpsx/include/stdlib.h | |
| parent | eaff9ccf1dfe8f9524a1f72d8c3ec9c57a6b8228 (diff) | |
| download | psxsdk-cbd551e8a326c56472f1423b298cd032711578a4.tar.gz | |
Provide implementations for strtoul(3) and strtoull(3)
Diffstat (limited to 'libpsx/include/stdlib.h')
| -rw-r--r-- | libpsx/include/stdlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpsx/include/stdlib.h b/libpsx/include/stdlib.h index 099abbd..661495a 100644 --- a/libpsx/include/stdlib.h +++ b/libpsx/include/stdlib.h @@ -52,6 +52,8 @@ void *realloc(void *buf , size_t n); int abs(int x); long long strtoll(const char *nptr, char **endptr, int base); +unsigned long long strtoull(const char *nptr, char **endptr, int base); +unsigned long strtoul(const char *nptr, char **endptr, int base); long strtol(const char *nptr, char **endptr, int base); double strtod(const char *nptr, char **endptr); long double strtold(const char *nptr, char **endptr); |
