diff --git a/sources/libs/stdc-ansi/stdbool.h b/sources/libs/stdc-ansi/stdbool.h new file mode 100644 index 000000000..3931b7f66 --- /dev/null +++ b/sources/libs/stdc-ansi/stdbool.h @@ -0,0 +1,11 @@ +#pragma once + +#ifndef __cplusplus + +#define true 1 +#define false 0 +#define bool _Bool + +#endif // __cplusplus + +#define __bool_true_false_are_defined 1