##// 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 #include <stddef.h> /* size_t */
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 /* xpparm_t.flags */
40 /* xpparm_t.flags */
33 #define XDF_NEED_MINIMAL (1 << 0)
41 #define XDF_NEED_MINIMAL (1 << 0)
34
42
@@ -24,13 +24,6 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
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 #include <stdio.h>
27 #include <stdio.h>
35 #include <stdlib.h>
28 #include <stdlib.h>
36 #include <string.h>
29 #include <string.h>
General Comments 0
You need to be logged in to leave comments. Login now