summaryrefslogtreecommitdiff
path: root/include/stdbool.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/stdbool.h')
-rw-r--r--include/stdbool.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/stdbool.h b/include/stdbool.h
new file mode 100644
index 00000000..4b677e27
--- /dev/null
+++ b/include/stdbool.h
@@ -0,0 +1,9 @@
+#ifndef __STDBOOL_H__
+#define __STDBOOL_H__
+
+#define bool _Bool
+#define true 1
+#define false 0
+#define __bool_true_false_are_defined 1
+
+#endif