From 64b06d88c810b685b39e5bd02f3b243a02c6def4 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 15 Dec 2025 09:54:17 +0100 Subject: [PATCH] fix: error headers were needlessly backing out of util/ --- src/util/error.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/util/error.h b/src/util/error.h index 78d24d3..77fe27c 100644 --- a/src/util/error.h +++ b/src/util/error.h @@ -7,8 +7,7 @@ #include #include "../types.h" -#include "../util/atrb.h" -#include "../util/macro.h" +#include "atrb.h" void error_debug(uint ln, const char *restrict file, const char *restrict fmt, ...); void error_info(uint ln, const char *restrict file, const char *restrict fmt, ...);