diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-27 01:48:17 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 13:25:58 +0100 |
commit | 7d50b32a129e781401cf897475f388f682de1368 (patch) | |
tree | 19ccd3483828076177108fe2ec012c52f3f7dd9e /src/core | |
parent | 872a590ef83b23a65071242a8082d25d5efa6db6 (diff) |
util-lib: split out globbing related calls into glob-util.[ch]
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/execute.c | 1 | ||||
-rw-r--r-- | src/core/path.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index 3814fd4381..bf13e29bd9 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -70,6 +70,7 @@ #include "fileio.h" #include "formats-util.h" #include "fs-util.h" +#include "glob-util.h" #include "io-util.h" #include "ioprio.h" #include "log.h" diff --git a/src/core/path.c b/src/core/path.c index 761ec265b4..9c5309a58a 100644 --- a/src/core/path.c +++ b/src/core/path.c @@ -28,6 +28,7 @@ #include "bus-util.h" #include "dbus-path.h" #include "fd-util.h" +#include "glob-util.h" #include "macro.h" #include "mkdir.h" #include "path.h" |