From cfe1bd5cb72a12f3bfc643f64b33444ad63502f9 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 24 Aug 2025 19:45:19 -0400 Subject: Shared includes for compile folder to reduce duplicate code --- src/compile/cli.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/compile/cli.c') diff --git a/src/compile/cli.c b/src/compile/cli.c index d9299bae..4a3be333 100644 --- a/src/compile/cli.c +++ b/src/compile/cli.c @@ -1,16 +1,12 @@ // This file defines how to compile CLI argument parsing -#include "expressions.h" #include "../environment.h" #include "../stdlib/datatypes.h" #include "../stdlib/text.h" #include "../stdlib/util.h" #include "../typecheck.h" #include "../types.h" -#include "declarations.h" -#include "optionals.h" -#include "text.h" -#include "types.h" +#include "compilation.h" static Text_t get_flag_options(type_t *t, const char *separator) { if (t->tag == BoolType) { -- cgit v1.2.3