1From 85f70e78d0e589361d873e5463b58bc73898508c Mon Sep 17 00:00:00 2001
2From: hovercats <hovercatswithlasereyes@protonmail.com>
3Date: Wed, 2 Sep 2026 14:15:15 +0200
4Subject: [PATCH] dont use relative path for config.h
5
6---
7 source/cterm.c | 2 +-
8 source/term.c | 2 +-
9 2 files changed, 2 insertions(+), 2 deletions(-)
10
11diff --git a/source/cterm.c b/source/cterm.c
12index 08993ce..8c0d734 100644
13--- a/source/cterm.c
14+++ b/source/cterm.c
15@@ -19,7 +19,7 @@
16
17 #include <maus.h>
18
19-#include "../config.h"
20+#include "config.h"
21 #include "draw.h"
22 #include "font.h"
23 #include "term.h"
24diff --git a/source/term.c b/source/term.c
25index d07558a..0af05cb 100644
26--- a/source/term.c
27+++ b/source/term.c
28@@ -2,7 +2,7 @@
29 #include <stdlib.h>
30 #include <string.h>
31
32-#include "../config.h"
33+#include "config.h"
34 #include "term.h"
35 #include "utils.h"
36
37--
382.54.0
39