diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-26 21:16:26 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 13:25:56 +0100 |
commit | f4f15635ec05293ffcc83a5b39f624bbabbd8fd0 (patch) | |
tree | a71082ce77e66b48a01a4386e8f36985cc27d3d2 /src/test/test-path.c | |
parent | c8b3094de58e3b1e37d06f3d56c9346cffbe320a (diff) |
util-lib: move a number of fs operations into fs-util.[ch]
Diffstat (limited to 'src/test/test-path.c')
-rw-r--r-- | src/test/test-path.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/test-path.c b/src/test/test-path.c index e9e0bfd41d..405434c1ff 100644 --- a/src/test/test-path.c +++ b/src/test/test-path.c @@ -20,6 +20,8 @@ #include <stdbool.h> #include <stdio.h> +#include "fd-util.h" +#include "fs-util.h" #include "macro.h" #include "manager.h" #include "mkdir.h" @@ -28,7 +30,6 @@ #include "strv.h" #include "unit.h" #include "util.h" -#include "fd-util.h" typedef void (*test_function_t)(Manager *m); |