diff options
Diffstat (limited to 'lib/bool/bool.h')
| -rw-r--r-- | lib/bool/bool.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/bool/bool.h b/lib/bool/bool.h new file mode 100644 index 0000000..be2cbd4 --- /dev/null +++ b/lib/bool/bool.h @@ -0,0 +1,6 @@ +#include "lib/int/stdint.h" + +#define false 0 +#define true !false +#define bool uint8_t + |
