summaryrefslogtreecommitdiffstatshomepage
path: root/mpy-cross/mpconfigport.h
diff options
context:
space:
mode:
Diffstat (limited to 'mpy-cross/mpconfigport.h')
-rw-r--r--mpy-cross/mpconfigport.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/mpy-cross/mpconfigport.h b/mpy-cross/mpconfigport.h
index 031c350116..b3f7d9c3cd 100644
--- a/mpy-cross/mpconfigport.h
+++ b/mpy-cross/mpconfigport.h
@@ -87,6 +87,10 @@
#ifdef __LP64__
typedef long mp_int_t; // must be pointer size
typedef unsigned long mp_uint_t; // must be pointer size
+#elif defined ( __MINGW32__ ) && defined( _WIN64 )
+#include <stdint.h>
+typedef __int64 mp_int_t;
+typedef unsigned __int64 mp_uint_t;
#else
// These are definitions for machines where sizeof(int) == sizeof(void*),
// regardless for actual size.
@@ -115,6 +119,8 @@ typedef const void *machine_const_ptr_t; // must be of pointer size
// We need to provide a declaration/definition of alloca()
#ifdef __FreeBSD__
#include <stdlib.h>
+#elif defined( _WIN32 )
+#include <malloc.h>
#else
#include <alloca.h>
#endif