Merge pull request #161 from skeeto/fix-missing-includes

Add includes to alloc.h for CONST and E_FUNC
This commit is contained in:
Landon Curt Noll
2025-08-13 10:50:56 -07:00
committed by GitHub

View File

@@ -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 <calc/decl.h>
# include <calc/have_newstr.h>
# include <calc/have_string.h>
# include <calc/have_memmv.h>
# include <calc/have_const.h>
#endif
#ifdef HAVE_STRING_H