From 9a9f118b8201daf6acbdffcb4c65b179e5a8080b Mon Sep 17 00:00:00 2001 From: kamkow1 Date: Tue, 3 Mar 2026 21:54:32 +0100 Subject: [PATCH] CE include stdbool.h, because it does not compile in debug mode --- ce/interp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ce/interp.h b/ce/interp.h index a05881a..cf4500f 100644 --- a/ce/interp.h +++ b/ce/interp.h @@ -3,6 +3,7 @@ #include "context.h" #include "parser.h" +#include void execute (struct ast_node* root, struct context* context);