00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef _STDBOOL_H_
00030 #define _STDBOOL_H_
00031
00032 #define __bool_true_false_are_defined 1
00033
00034 #ifndef __cplusplus
00035
00036 #define false 0
00037 #define true 1
00038
00039 #define bool _Bool
00040 #if __STDC_VERSION__ < 199901L && __GNUC__ < 3
00041 typedef int _Bool;
00042 #endif
00043
00044 #endif
00045
00046 #endif