X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/f7ff1b0f0792f1f870778404531e68e77832c4a1..553fabe73ac34fa9f24daa48201923af04da7d88:/nt/inc/inttypes.h diff --git a/nt/inc/inttypes.h b/nt/inc/inttypes.h index 8f9c6ede76..4629ccb038 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. -Copyright (C) 2011 Free Software Foundation, Inc. +Copyright (C) 2011-2013 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -23,8 +23,14 @@ along with GNU Emacs. If not, see . */ #ifdef __MINGW32__ #include_next #else /* !__MINGW32__ */ -#define uintmax_t unsigned __int64 +#include "stdint.h" +#ifdef _WIN64 #define strtoumax _strtoui64 +#define strtoimax _strtoi64 +#else +#define strtoumax strtoul +#define strtoimax strtol +#endif #endif /* !__MINGW32__ */ #endif