From dfda5c86b24284aca09da6055ef721ff7a18cd7b Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 16 Nov 2025 09:19:14 +0100 Subject: factor type stuff into type.h --- c/c.h | 1 + c/lex.h | 1 + 2 files changed, 2 insertions(+) (limited to 'c') diff --git a/c/c.h b/c/c.h index e8e797c..f0d42a1 100644 --- a/c/c.h +++ b/c/c.h @@ -1,4 +1,5 @@ #include "../common.h" +#include "../type.h" /*************/ /* EXPR TREE */ diff --git a/c/lex.h b/c/lex.h index daed23c..fd84f0a 100644 --- a/c/lex.h +++ b/c/lex.h @@ -1,4 +1,5 @@ #include "../common.h" +#include "../type.h" static inline bool joinspan(struct span0 *dst, struct span0 snd) -- cgit v1.2.3