aboutsummaryrefslogtreecommitdiff
path: root/stdbool.h
diff options
context:
space:
mode:
Diffstat (limited to 'stdbool.h')
-rw-r--r--stdbool.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/stdbool.h b/stdbool.h
new file mode 100644
index 0000000..6ed13a6
--- /dev/null
+++ b/stdbool.h
@@ -0,0 +1,10 @@
+#ifndef _STDBOOL_H
+#define _STDBOOL_H
+
+/* ISOC99 boolean */
+
+#define bool _Bool
+#define true 1
+#define false 0
+
+#endif /* _STDBOOL_H */