1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 12:54:51 +00:00
oot/include/libc/stdbool.h

15 lines
171 B
C
Raw Normal View History

#ifndef STDBOOL_H
#define STDBOOL_H
2020-03-17 04:31:30 +00:00
2020-03-22 21:50:11 +00:00
#define __bool_true_false_are_defined 1
2020-03-17 04:31:30 +00:00
#ifndef __cplusplus
2020-03-22 21:50:11 +00:00
#define bool u32
#define false 0
#define true 1
2020-03-17 04:31:30 +00:00
#endif
2020-03-17 04:31:30 +00:00
#endif