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

20 lines
250 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
#if (__STDC_VERSION__ >= 199901L)
#define bool _Bool
#else
#define bool unsigned int
#endif
2020-03-22 21:50:11 +00:00
#define false 0
#define true 1
2020-03-17 04:31:30 +00:00
#endif
2020-03-17 04:31:30 +00:00
#endif