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/journal | |
parent | 872a590ef83b23a65071242a8082d25d5efa6db6 (diff) |
util-lib: split out globbing related calls into glob-util.[ch]
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/fsprg.h | 1 | ||||
-rw-r--r-- | src/journal/journalctl.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/journal/fsprg.h b/src/journal/fsprg.h index 150d034828..5959b1fed2 100644 --- a/src/journal/fsprg.h +++ b/src/journal/fsprg.h @@ -29,6 +29,7 @@ #include <inttypes.h> #include "macro.h" +#include "util.h" #ifdef __cplusplus extern "C" { diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index 1965522dfd..2782ac0329 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -47,6 +47,7 @@ #include "fileio.h" #include "fs-util.h" #include "fsprg.h" +#include "glob-util.h" #include "hostname-util.h" #include "io-util.h" #include "journal-def.h" |