summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Gladman <brg@gladman.plus.com>2020-05-04 14:54:18 +0100
committerBrian Gladman <brg@gladman.plus.com>2020-05-04 14:54:18 +0100
commitc9db6d70a9ab62ce58a1cf123f2007d7a3ccc528 (patch)
treea575a48021f2018af2feb0e22d5e6c8fe5adfd70
parent98a83602f2450b3619043a705af1c7f4ee4b2f7f (diff)
downloadyasm-c9db6d70a9ab62ce58a1cf123f2007d7a3ccc528.tar.gz
add missing include file
-rw-r--r--Mkfiles/vs/libyasm-stdint.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Mkfiles/vs/libyasm-stdint.h b/Mkfiles/vs/libyasm-stdint.h
new file mode 100644
index 00000000..b66ab15f
--- /dev/null
+++ b/Mkfiles/vs/libyasm-stdint.h
@@ -0,0 +1,8 @@
+#ifndef _UINTPTR_T_DEFINED
+#ifdef _WIN64
+#include <vadefs.h>
+#else
+typedef unsigned long uintptr_t;
+#endif
+#define _UINTPTR_T_DEFINED
+#endif