vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 34449956f983ea7e4b4d12b410cf9997039c8270 parent 2e4c145db901a6c92eda7962067edd453bcf75f1 Author: Marc André Tanner <mat@brain-dump.org> Date: Tue, 20 Oct 2020 11:53:12 +0200 test/core: fix relative #include directive The correct location is ensured by specifying the desired include directory (-I flag) to the compiler driver. Diffstat:
| M | core/array-test.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/array-test.c b/core/array-test.c @@ -6,7 +6,7 @@ #include <errno.h> #include "tap.h" #include "array.h" -#include "../../util.h" +#include "util.h" typedef struct { char key[64];