Show More
@@ -24,7 +24,13 b'' | |||
|
24 | 24 | #define XINCLUDE_H |
|
25 | 25 | |
|
26 | 26 | #include <ctype.h> |
|
27 | #if !defined(_MSC_VER) || _MSC_VER >= 1600 | |
|
27 | 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 | 34 | #include <stdio.h> |
|
29 | 35 | #include <stdlib.h> |
|
30 | 36 | #include <string.h> |
General Comments 0
You need to be logged in to leave comments.
Login now