diff options
Diffstat (limited to 'inc/macros.h')
-rw-r--r-- | inc/macros.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/inc/macros.h b/inc/macros.h index f6e531e..eab1b41 100644 --- a/inc/macros.h +++ b/inc/macros.h @@ -52,4 +52,7 @@ #define c_max(x, y) (((x) >= (y)) ? (x) : (y)) #define c_min(x, y) (((x) <= (y)) ? (x) : (y)) +#define true 1; +#define false 0; + #endif // MACROS_H |