From 1e8a84cb075abcdc1c82927f78a1c81b9303e3ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Tue, 20 Oct 2020 11:53:12 +0200 Subject: test/core: fix relative #include directive The correct location is ensured by specifying the desired include directory (-I flag) to the compiler driver. --- core/array-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/array-test.c') diff --git a/core/array-test.c b/core/array-test.c index b96f26d..748277f 100644 --- a/core/array-test.c +++ b/core/array-test.c @@ -6,7 +6,7 @@ #include #include "tap.h" #include "array.h" -#include "../../util.h" +#include "util.h" typedef struct { char key[64]; -- cgit v1.2.3