aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid <dbphillipsnz@gmail.com>2014-04-30 13:07:57 +1200
committerDavid <dbphillipsnz@gmail.com>2014-04-30 13:07:57 +1200
commita45baee6df260921cc1cc7e693c7c8b78e32838c (patch)
treec49a54a2671699beebd4c2b2567eb3e2affeae1f
parent4ec5aa223ec7c1e727ea2497936cbab5e3e57463 (diff)
downloadparamano-a45baee6df260921cc1cc7e693c7c8b78e32838c.tar.xz
Define TRUE->true FALSE->false
-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