Install msysDVLPR-1.0.0-alpha-1
[msysgit.git] / lib / gcc-lib / i686-pc-msys / 2.95.3-1 / include / stdbool.h
blob0baf9ce42bdc8d2aaa114e0898ae8367b03c0f76
1 /* stdbool.h for GNU. */
2 #ifndef __STDBOOL_H__
3 #define __STDBOOL_H__ 1
5 /* The type `bool' must promote to `int' or `unsigned int'. The constants
6 `true' and `false' must have the value 0 and 1 respectively. */
7 typedef enum
9 false = 0,
10 true = 1
11 } bool;
13 /* The names `true' and `false' must also be made available as macros. */
14 #define false false
15 #define true true
17 /* Signal that all the definitions are present. */
18 #define __bool_true_false_are_defined 1
20 #endif /* stdbool.h */