1 
2 #ifndef _STDBOOL_H_
3 #define _STDBOOL_H_
4 
5 #define false 0
6 #define true 1
7 #define bool _Bool
8 
9 #endif /* _STDBOOL_H_ */
10 
11