aboutsummaryrefslogtreecommitdiffstats
path: root/make/joal-common-CustomCCode.c
blob: a58e869e3a4474860cb77e58ff179425c0fd6840 (plain)
1
2
3
4
5
6
7
8
9
10
#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
#include <string.h>