From a45baee6df260921cc1cc7e693c7c8b78e32838c Mon Sep 17 00:00:00 2001 From: David Date: Wed, 30 Apr 2014 13:07:57 +1200 Subject: Define TRUE->true FALSE->false --- bool.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bool.h 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 + + #ifndef TRUE + #define TRUE true + #endif + + #ifndef FALSE + #define FALSE false + #endif + +#endif -- cgit v1.1