1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-02-04 02:44:24 +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 00:31:30 -04:00
2020-03-22 22:50:11 +01:00
#define __bool_true_false_are_defined 1
2020-03-17 00:31:30 -04:00
#ifndef __cplusplus
#if (__STDC_VERSION__ >= 199901L)
#define bool _Bool
#else
#define bool unsigned int
#endif
2020-03-22 22:50:11 +01:00
#define false 0
#define true 1
2020-03-17 00:31:30 -04:00
#endif
2020-03-17 00:31:30 -04:00
#endif