summaryrefslogtreecommitdiff
path: root/deps/v8/include/v8stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/include/v8stdint.h')
-rw-r--r--deps/v8/include/v8stdint.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/deps/v8/include/v8stdint.h b/deps/v8/include/v8stdint.h
index 7c12e1f490..0b49b37918 100644
--- a/deps/v8/include/v8stdint.h
+++ b/deps/v8/include/v8stdint.h
@@ -33,7 +33,9 @@
#include <stddef.h>
#include <stdio.h>
-#if defined(_WIN32) && !defined(__MINGW32__)
+#include "v8config.h"
+
+#if V8_OS_WIN && !V8_CC_MINGW
typedef signed char int8_t;
typedef unsigned char uint8_t;
@@ -47,7 +49,7 @@ typedef unsigned __int64 uint64_t;
#else
-#include <stdint.h>
+#include <stdint.h> // NOLINT
#endif