From 0fa3dd385ce95647d1878bf863efa9ee251fdbdb Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 24 Jul 2025 05:21:43 -0400 Subject: oasm: Add stdbool.h includes Signed-off-by: Ian Moffett --- usr.bin/oasm/include/oasm/lex.h | 1 + usr.bin/oasm/label.c | 1 + 2 files changed, 2 insertions(+) (limited to 'usr.bin/oasm') diff --git a/usr.bin/oasm/include/oasm/lex.h b/usr.bin/oasm/include/oasm/lex.h index fa82398..b392403 100644 --- a/usr.bin/oasm/include/oasm/lex.h +++ b/usr.bin/oasm/include/oasm/lex.h @@ -33,6 +33,7 @@ #include #include #include +#include struct oasm_state; diff --git a/usr.bin/oasm/label.c b/usr.bin/oasm/label.c index c54209a..2647bb9 100644 --- a/usr.bin/oasm/label.c +++ b/usr.bin/oasm/label.c @@ -35,6 +35,7 @@ #include #include #include +#include static struct oasm_label *labels[MAX_LABELS]; static size_t label_count = 0; -- cgit v1.2.3