blob: f749723ec719019e1b4cc7161826453f971031a6 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifdef _MSC_VER /* Windows, Microsoft compilers */
/* This typedef is only needed for VC6 */
#if _MSC_VER <= 1200
typedef int intptr_t;
#endif
#else
/* This header seems to be available on all other platforms */
#include <inttypes.h>
#endif
|