aboutsummaryrefslogtreecommitdiff
path: root/bool.h
diff options
context:
space:
mode:
Diffstat (limited to 'bool.h')
-rw-r--r--bool.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/bool.h b/bool.h
new file mode 100644
index 0000000..4df8b53
--- /dev/null
+++ b/bool.h
@@ -0,0 +1,14 @@
+#ifndef BOOL_H
+#define BOOL_H
+
+ #include <stdbool.h>
+
+ #ifndef TRUE
+ #define TRUE true
+ #endif
+
+ #ifndef FALSE
+ #define FALSE false
+ #endif
+
+#endif