summaryrefslogtreecommitdiff
path: root/include/bool.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bool.h')
-rw-r--r--include/bool.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/bool.h b/include/bool.h
new file mode 100644
index 0000000..ea32909
--- /dev/null
+++ b/include/bool.h
@@ -0,0 +1,11 @@
+
+#ifndef BOOL_H
+
+#define BOOL_H
+
+#define bool_t int
+
+#define TRUE 1
+#define FALSE 0
+
+#endif