From aebbd72076dd641950edbea6b9f5d8afa1d86027 Mon Sep 17 00:00:00 2001 From: sleeptightAnsiC <91839286+sleeptightAnsiC@users.noreply.github.com> Date: Tue, 7 Jan 2025 14:26:57 +0100 Subject: [PATCH] fix(term): make sure that libdillimpl include uses "" marks This fixes issue where compiling libdill/term.c fails when done by hand (without build system) due to searching for libdillimpl.h in system-headers --- term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/term.c b/term.c index 5c91677b..1da5e545 100644 --- a/term.c +++ b/term.c @@ -28,7 +28,7 @@ #include #define DILL_DISABLE_RAW_NAMES -#include +#include "libdillimpl.h" #include "iol.h" #include "utils.h"