mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
13 lines
216 B
C
13 lines
216 B
C
|
/*
|
||
|
* Work around lack of strtoumax in older MSVC libraries.
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "defs.h"
|
||
|
|
||
|
uintmax_t strtoumax(const char *nptr, char **endptr, int base)
|
||
|
{
|
||
|
return _strtoui64(nptr, endptr, base);
|
||
|
}
|