2021-11-05 23:44:58 -03:00
|
|
|
#ifndef STDBOOL
|
|
|
|
|
#define STDBOOL
|
2021-04-07 16:16:16 -05:00
|
|
|
|
2021-05-09 21:12:42 -05:00
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
|
|
|
|
|
|
#define bool u32
|
2021-04-07 16:16:16 -05:00
|
|
|
#define false 0
|
2021-05-09 21:12:42 -05:00
|
|
|
#define true 1
|
2021-04-07 16:16:16 -05:00
|
|
|
|
2021-05-09 21:12:42 -05:00
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
2021-11-05 23:44:58 -03:00
|
|
|
#endif /* STDBOOL */
|