blob: 593f1d5e81bbf337cea8bc074b48e70cb4549650 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifdef _MSC_VER /* Windows, Microsoft compilers */
/* This typedef is apparently needed for compilers before VC8 */
#if _MSC_VER < 1400
typedef int intptr_t;
#endif
#else
/* This header seems to be available on all other platforms */
#include <inttypes.h>
#endif
#include <string.h>
|