diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-11-20 15:42:57 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-11-20 18:40:02 +0100 |
commit | 294bf0c34a53caa25709b794bfeee6a00a2b6ecd (patch) | |
tree | a429db1ca92924ac73959a0ed9954161e22612dd /src/tmpfiles | |
parent | 0166c42868813d5d96b500277f6f819eef498b95 (diff) | |
download | systemd-294bf0c34a53caa25709b794bfeee6a00a2b6ecd.tar.gz systemd-294bf0c34a53caa25709b794bfeee6a00a2b6ecd.tar.bz2 systemd-294bf0c34a53caa25709b794bfeee6a00a2b6ecd.zip |
Split out pretty-print.c and move pager.c and main-func.h to shared/
This is high-level functionality, and fits better in shared/ (which is for
our executables), than in basic/ (which is also for libraries).
Diffstat (limited to 'src/tmpfiles')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 9de9498d48..253d3af15a 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -46,6 +46,7 @@ #include "parse-util.h" #include "path-lookup.h" #include "path-util.h" +#include "pretty-print.h" #include "rm-rf.h" #include "selinux-util.h" #include "set.h" @@ -55,7 +56,6 @@ #include "string-table.h" #include "string-util.h" #include "strv.h" -#include "terminal-util.h" #include "umask-util.h" #include "user-util.h" #include "util.h" |