=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/stdbool.h,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/include/stdbool.h 2014/03/16 18:38:30 1.6 --- src/include/stdbool.h 2015/09/04 23:47:09 1.7 *************** *** 1,4 **** ! /* $OpenBSD: stdbool.h,v 1.6 2014/03/16 18:38:30 guenther Exp $ */ /* * Written by Marc Espie, September 25, 1999 --- 1,4 ---- ! /* $OpenBSD: stdbool.h,v 1.7 2015/09/04 23:47:09 daniel Exp $ */ /* * Written by Marc Espie, September 25, 1999 *************** *** 10,17 **** #ifndef __cplusplus ! #if (defined(__GNUC__) && __GNUC__ >= 3) || defined(__PCC__) ! /* Support for _C99: type _Bool is already built-in. */ #define false 0 #define true 1 --- 10,18 ---- #ifndef __cplusplus ! #if defined(__GNUC__) || \ ! (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901) ! /* Support for C99: type _Bool is already built-in. */ #define false 0 #define true 1