X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/db0406bb64f7e5dceeb257c7e350f1e80ed9c1c1..b0edd7c69d88f245981a05e2333b09e3171d4e6f:/nt/inc/inttypes.h diff --git a/nt/inc/inttypes.h b/nt/inc/inttypes.h index 3e8b55ab98..a07d64e71a 100644 --- a/nt/inc/inttypes.h +++ b/nt/inc/inttypes.h @@ -1,6 +1,6 @@ -/* Replacement inntypes.h file for building GNU Emacs on Windows with MSVC. +/* Replacement inttypes.h file for building GNU Emacs on Windows with MSVC. -Copyright (C) 2011 Free Software Foundation, Inc. +Copyright (C) 2011-2015 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -24,7 +24,13 @@ along with GNU Emacs. If not, see . */ #include_next #else /* !__MINGW32__ */ #include "stdint.h" +#ifdef _WIN64 #define strtoumax _strtoui64 +#define strtoimax _strtoi64 +#else +#define strtoumax strtoul +#define strtoimax strtol +#endif #endif /* !__MINGW32__ */ #endif