diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-30 12:31:23 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-30 12:31:23 +0200 |
commit | 03862852b128748358dcb39ce50600eef0ba1a71 (patch) | |
tree | d5052d02d7bb31a866d5829eb05cfaf9b35bfa59 /shared | |
parent | 555e5d2c0ce77dd1e031690c98ec9a1366182347 (diff) |
use ncurses instead of poopy ui library
Diffstat (limited to 'shared')
-rw-r--r-- | shared/bool.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/bool.h b/shared/bool.h index 9ea97f7..4ffb6b4 100644 --- a/shared/bool.h +++ b/shared/bool.h @@ -4,6 +4,8 @@ /** @file bool.h */ +#ifndef bool typedef uint8_t bool; #define false 0 /* NOLINT */ #define true 1 /* NOLINT */ +#endif |