diff options
Diffstat (limited to 'include/lib/bool.h')
-rw-r--r-- | include/lib/bool.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/lib/bool.h b/include/lib/bool.h new file mode 100644 index 0000000..6bf4c40 --- /dev/null +++ b/include/lib/bool.h @@ -0,0 +1,8 @@ +#ifndef INC_LIB_BOOL_H +#define INC_LIB_BOOL_H + +#define bool_t uint8_t +#define FALSE 0 +#define TRUE 1 + +#endif |