5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 Boolean type and values.
10 C99 defines a new basic type _Bool, which is a boolean type.
11 However we need to check whether it exists or not.
14 /* People are allowed to define their own versions of these */
18 #undef __bool_true_false_are_defined
20 /* These are the C99 definitions */
24 #define __bool_true_false_are_defined 1
26 /* This is to make _Bool a real type if this isn't C99 or GCC v3+ */
27 #if __STDC_VERSION__ < 199901L && (!defined __GNUC__ || __GNUC__ < 3)
31 #endif /* _STDBOOL_H_ */