diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-04-18 14:51:42 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-04-19 13:02:28 -0400 |
commit | 1501910dd0d09c50057c8358901663a87333bd8f (patch) | |
tree | b9abef01068fbda32a4e9473f8a5c73e3ec58f09 /tests/xspawn.c | |
parent | aa0843ae50b09bad3ece21bd310b849d034efac2 (diff) | |
download | bfs-1501910dd0d09c50057c8358901663a87333bd8f.tar.xz |
tests: Add ../src to the include path
Diffstat (limited to 'tests/xspawn.c')
-rw-r--r-- | tests/xspawn.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/xspawn.c b/tests/xspawn.c index c1bac36..fd8362e 100644 --- a/tests/xspawn.c +++ b/tests/xspawn.c @@ -2,11 +2,11 @@ // SPDX-License-Identifier: 0BSD #include "tests.h" -#include "../src/alloc.h" -#include "../src/bfstd.h" -#include "../src/config.h" -#include "../src/dstring.h" -#include "../src/xspawn.h" +#include "alloc.h" +#include "bfstd.h" +#include "config.h" +#include "dstring.h" +#include "xspawn.h" #include <stdlib.h> #include <string.h> #include <sys/wait.h> |