diff options
author | David <dbphillipsnz@gmail.com> | 2014-04-30 13:07:57 +1200 |
---|---|---|
committer | David <dbphillipsnz@gmail.com> | 2014-04-30 13:07:57 +1200 |
commit | a45baee6df260921cc1cc7e693c7c8b78e32838c (patch) | |
tree | c49a54a2671699beebd4c2b2567eb3e2affeae1f | |
parent | 4ec5aa223ec7c1e727ea2497936cbab5e3e57463 (diff) | |
download | paramano-a45baee6df260921cc1cc7e693c7c8b78e32838c.tar.xz |
Define TRUE->true FALSE->false
-rw-r--r-- | bool.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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 |