Files
2ship2harkinian-Android/include/libc/stdbool.h
T

15 lines
199 B
C
Raw Normal View History

#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 */
#endif /* STDBOOL */