aboutsummaryrefslogtreecommitdiffstats
path: root/make/config/intptr.cfg
blob: c946e4851ea5761736d0ecf89ba9be7868293919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CustomCCode #ifdef _WIN32
CustomCCode  #ifdef _MSC_VER
CustomCCode  /* This typedef is apparently needed for Microsoft compilers before VC8,
CustomCCode     and on Windows CE */
CustomCCode   #if (_MSC_VER < 1400) || defined(UNDER_CE)
CustomCCode    #ifdef _WIN64
CustomCCode     typedef long long intptr_t;
CustomCCode    #else
CustomCCode     typedef int intptr_t;
CustomCCode    #endif
CustomCCode   #endif
CustomCCode  #else
CustomCCode   #include <inttypes.h>
CustomCCode  #endif
CustomCCode #else
CustomCCode  #include <inttypes.h>
CustomCCode #endif