/* * Work around lack of strtoumax in older MSVC libraries. */ #include #include "defs.h" uintmax_t strtoumax(const char *nptr, char **endptr, int base) { return _strtoui64(nptr, endptr, base); }