aboutsummaryrefslogtreecommitdiffstats
path: root/nt/inc
diff options
context:
space:
mode:
Diffstat (limited to 'nt/inc')
-rw-r--r--nt/inc/stdint.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/nt/inc/stdint.h b/nt/inc/stdint.h
index 5242a45df44..fa2e06f3da9 100644
--- a/nt/inc/stdint.h
+++ b/nt/inc/stdint.h
@@ -29,7 +29,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
29 29
30#ifdef _WIN64 30#ifdef _WIN64
31typedef __int64 intptr_t; 31typedef __int64 intptr_t;
32#define UINT64_MAX 18446744073709551616 32#define UINT64_MAX 18446744073709551615
33#define UINT64_MIN 0 33#define UINT64_MIN 0
34/* "i64" is the non-standard suffix used by MSVC for 64-bit constants. */ 34/* "i64" is the non-standard suffix used by MSVC for 64-bit constants. */
35#define INT64_MAX 9223372036854775807i64 35#define INT64_MAX 9223372036854775807i64
@@ -42,7 +42,7 @@ typedef __int64 intptr_t;
42#else 42#else
43typedef int intptr_t; 43typedef int intptr_t;
44typedef unsigned int uint32_t; 44typedef unsigned int uint32_t;
45#define UINT32_MAX 4294967296 45#define UINT32_MAX 4294967295
46#define UINT32_MIN 0 46#define UINT32_MIN 0
47#define INT32_MAX 2147483647 47#define INT32_MAX 2147483647
48#define INT32_MIN (~INT32_MAX) 48#define INT32_MIN (~INT32_MAX)