summaryrefslogtreecommitdiff
path: root/lib/bool/bool.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bool/bool.h')
-rw-r--r--lib/bool/bool.h6
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
+