summaryrefslogtreecommitdiff
path: root/usr.bin/oasm/label.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-07-24 05:21:43 -0400
committerIan Moffett <ian@osmora.org>2025-07-24 05:26:22 -0400
commit0fa3dd385ce95647d1878bf863efa9ee251fdbdb (patch)
tree165e80152c6d91ff8f97050881825da40fc99175 /usr.bin/oasm/label.c
parent3bcd65574cd857781e49ecf6d92480ad43fdaa34 (diff)
oasm: Add stdbool.h includes
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/oasm/label.c')
-rw-r--r--usr.bin/oasm/label.c1
1 files changed, 1 insertions, 0 deletions
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 <stdlib.h>
#include <string.h>
#include <stddef.h>
+#include <stdbool.h>
static struct oasm_label *labels[MAX_LABELS];
static size_t label_count = 0;