diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-21 04:37:34 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-21 04:37:34 -0400 |
commit | a855b0caf30a6fef7eda04041adc5a6ddc55fb23 (patch) | |
tree | e84135e09a8ab431824c20f2f86c69b6d07928c8 | |
parent | 91ab66580324e31dfa3a169571a0ea2e60a98f59 (diff) |
usr.bin: mrow: Add stdbool.h include
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | usr.bin/mrow/mrow.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/mrow/mrow.c b/usr.bin/mrow/mrow.c index ac4ee0d..255effb 100644 --- a/usr.bin/mrow/mrow.c +++ b/usr.bin/mrow/mrow.c @@ -36,6 +36,7 @@ #include <stdio.h> #include <time.h> #include <stdlib.h> +#include <stdbool.h> #define IS_ASCII(C) ((C) > 0 && (C) < 127) |