diff --git a/headers/build/gcc-2.95.3/stdbool.h b/headers/build/gcc-2.95.3/stdbool.h index e19bcb1faa..0dbda02c3e 100644 --- a/headers/build/gcc-2.95.3/stdbool.h +++ b/headers/build/gcc-2.95.3/stdbool.h @@ -3,7 +3,10 @@ #define __STDBOOL_H__ 1 #if defined(__BEOS__) || defined(__HAIKU__) - typedef unsigned char _Bool; + #if __GNUC__ < 3 + typedef unsigned char _Bool; + #endif + #define bool _Bool #define false 0 #define true 1