##// END OF EJS Templates
xdiff: move stdint.h to xdiff.h...
Jun Wu -
r36954:a2baa61b default
parent child Browse files
Show More
@@ -29,6 +29,14 b' extern "C" {'
29 29
30 30 #include <stddef.h> /* size_t */
31 31
32 #if !defined(_MSC_VER) || _MSC_VER >= 1600
33 #include <stdint.h>
34 #else
35 /* prior to Visual Studio 2010 */
36 typedef long long int64_t;
37 typedef unsigned long long uint64_t;
38 #endif
39
32 40 /* xpparm_t.flags */
33 41 #define XDF_NEED_MINIMAL (1 << 0)
34 42
@@ -24,13 +24,6 b''
24 24 #define XINCLUDE_H
25 25
26 26 #include <ctype.h>
27 #if !defined(_MSC_VER) || _MSC_VER >= 1600
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
34 27 #include <stdio.h>
35 28 #include <stdlib.h>
36 29 #include <string.h>
General Comments 0
You need to be logged in to leave comments. Login now