diff options
author | Christian C <cc@localhost> | 2025-03-05 13:22:27 -0800 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-03-05 13:22:27 -0800 |
commit | 18f1ffd5da6e032f5ce461cda216a1cfa4474413 (patch) | |
tree | 0ea78387306a061faab5012b8398b38e667b304c | |
parent | 3b4f9ae515f421c6f4509cfe9caa4b2415f1adb9 (diff) |
Fix missing header
-rw-r--r-- | include/lib/bool.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/lib/bool.h b/include/lib/bool.h index 6bf4c40..171c015 100644 --- a/include/lib/bool.h +++ b/include/lib/bool.h @@ -1,6 +1,8 @@ #ifndef INC_LIB_BOOL_H #define INC_LIB_BOOL_H +#include <stdint.h> + #define bool_t uint8_t #define FALSE 0 #define TRUE 1 |