##// END OF EJS Templates
xdiff: backport int64_t and uint64_t types to Windows...
Matt Harbison -
r36932:d255744d default
parent child Browse files
Show More
@@ -24,7 +24,13 b''
24 #define XINCLUDE_H
24 #define XINCLUDE_H
25
25
26 #include <ctype.h>
26 #include <ctype.h>
27 #if !defined(_MSC_VER) || _MSC_VER >= 1600
27 #include <stdint.h>
28 #include <stdint.h>
29 #else
30 /* prior to Visual Studio 2010 */
31 typedef long long int64_t;
32 typedef unsigned long long uint64_t;
33 #endif
28 #include <stdio.h>
34 #include <stdio.h>
29 #include <stdlib.h>
35 #include <stdlib.h>
30 #include <string.h>
36 #include <string.h>
General Comments 0
You need to be logged in to leave comments. Login now