From 50cb6ec798e12096a07d2a69d29c14eb93ff7376 Mon Sep 17 00:00:00 2001 From: Christopher Wellons Date: Thu, 7 Aug 2025 20:13:18 -0400 Subject: [PATCH] Add includes to alloc.h for CONST and E_FUNC --- alloc.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/alloc.h b/alloc.h index cb6c7c2..4407665 100644 --- a/alloc.h +++ b/alloc.h @@ -29,13 +29,17 @@ #if defined(CALC_SRC) /* if we are building from the calc source tree */ +# include "decl.h" # include "have_newstr.h" # include "have_string.h" # include "have_memmv.h" +# include "have_const.h" #else +# include # include # include # include +# include #endif #ifdef HAVE_STRING_H