diff options
Diffstat (limited to 'lib/libc/inttypes/strtoumax.c')
| -rw-r--r-- | lib/libc/inttypes/strtoumax.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/inttypes/strtoumax.c b/lib/libc/inttypes/strtoumax.c new file mode 100644 index 00000000..500e255a --- /dev/null +++ b/lib/libc/inttypes/strtoumax.c @@ -0,0 +1,7 @@ +#include <stdint.h> +#include <stdlib.h> + +uintmax_t strtoumax(const char *restrict s, char **restrict p, int base) +{ + return strtoull(s, p, base); +} |
