aboutsummaryrefslogtreecommitdiff
path: root/src/include/stdbool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/stdbool.h')
-rw-r--r--src/include/stdbool.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/stdbool.h b/src/include/stdbool.h
index 2eeb70ef5b..d7f9e643ea 100644
--- a/src/include/stdbool.h
+++ b/src/include/stdbool.h
@@ -5,11 +5,8 @@
#include <stdint.h>
-#ifdef __ROMCC__
-typedef uint8_t bool;
-#else
+
typedef _Bool bool;
-#endif
#define true 1
#define false 0