summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Gladman <brg@gladman.plus.com>2017-03-07 20:31:18 +0000
committerBrian Gladman <brg@gladman.plus.com>2017-03-07 20:31:18 +0000
commit6143552f926a6fd839462a310a4c04e29c9875cf (patch)
treeb2d58f0a69647071ba0659dda3997c3ad2a4a827
parent51af4082cc898b122b88f11fd34033fc00fad81e (diff)
downloadyasm-6143552f926a6fd839462a310a4c04e29c9875cf.tar.gz
add missing VC++ header
-rw-r--r--Mkfiles/vc14/libyasm-stdint.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Mkfiles/vc14/libyasm-stdint.h b/Mkfiles/vc14/libyasm-stdint.h
new file mode 100644
index 00000000..b66ab15f
--- /dev/null
+++ b/Mkfiles/vc14/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