##// END OF EJS Templates
util: fix the check for non-C99 compilers (issue4605)
Kevin Bullock -
r24829:8e9f8d2a stable
parent child Browse files
Show More
@@ -218,7 +218,7 b' enum normcase_spec {'
218 218
219 219 #define MIN(a, b) (((a)<(b))?(a):(b))
220 220 /* VC9 doesn't include bool and lacks stdbool.h based on my searching */
221 #ifdef _MSC_VER || __STDC_VERSION__ < 199901L
221 #if defined(_MSC_VER) || __STDC_VERSION__ < 199901L
222 222 #define true 1
223 223 #define false 0
224 224 typedef unsigned char bool;
General Comments 0
You need to be logged in to leave comments. Login now