From a292680b28f607a3b5401ea4ab5641b817e12c20 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 26 Jun 2024 13:09:14 -0400 Subject: Include github.h and template_func_proto.h in core.h --- include/core.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/core.h') diff --git a/include/core.h b/include/core.h index ac9ae2f..1ea9650 100644 --- a/include/core.h +++ b/include/core.h @@ -38,6 +38,8 @@ #include "relocation.h" #include "wheel.h" #include "junitxml.h" +#include "github.h" +#include "template_func_proto.h" #define guard_runtime_free(X) do { if (X) { runtime_free(X); X = NULL; } } while (0) #define guard_strlist_free(X) do { if ((*X)) { strlist_free(X); (*X) = NULL; } } while (0) -- cgit