From c455e7b67d2e55e6ed03e3449203d4e307f5a7dd Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 13 Sep 2024 20:18:08 -0400 Subject: Rename builtins/ -> stdlib/ --- compile.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index c9e08c92..2802519a 100644 --- a/compile.c +++ b/compile.c @@ -7,15 +7,15 @@ #include #include "ast.h" -#include "builtins/integers.h" -#include "builtins/text.h" +#include "stdlib/integers.h" +#include "stdlib/text.h" #include "compile.h" #include "cordhelpers.h" #include "enums.h" #include "structs.h" #include "environment.h" #include "typecheck.h" -#include "builtins/util.h" +#include "stdlib/util.h" typedef ast_t* (*comprehension_body_t)(ast_t*, ast_t*); -- cgit v1.2.3