diff options
Diffstat (limited to 'make')
-rwxr-xr-x | make/joal-common-CustomCCode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/joal-common-CustomCCode.c b/make/joal-common-CustomCCode.c index a58e869..593f1d5 100755 --- a/make/joal-common-CustomCCode.c +++ b/make/joal-common-CustomCCode.c @@ -1,6 +1,6 @@ #ifdef _MSC_VER /* Windows, Microsoft compilers */ -/* This typedef is only needed for VC6 */ -#if _MSC_VER <= 1200 +/* This typedef is apparently needed for compilers before VC8 */ +#if _MSC_VER < 1400 typedef int intptr_t; #endif #else |