diff src/lisp.h @ 5929:f5dfcf2323bc cygwin

vs2015_3.patch applied, and some vs64 fixes
author Henry Thompson <ht@markup.co.uk>
date Tue, 08 Dec 2015 09:05:19 +0000
parents 5d5aeb79edb4
children e2fae7783046
line wrap: on
line diff
--- a/src/lisp.h	Fri Jul 24 14:48:46 2015 +0100
+++ b/src/lisp.h	Tue Dec 08 09:05:19 2015 +0000
@@ -425,6 +425,11 @@
 #include <inttypes.h>
 #elif defined (HAVE_INTPTR_T_IN_SYS_TYPES_H)
 /* included elsewhere */
+#elif defined _WIN64
+    typedef unsigned __int64 size_t;
+    typedef __int64          ptrdiff_t;
+    typedef __int64          intptr_t;
+    typedef unsigned __int64 uintptr_t;
 #elif SIZEOF_VOID_P == SIZEOF_INT
 typedef int intptr_t;
 typedef unsigned int uintptr_t;