diff options
author | Lennart Poettering <lennart@poettering.net> | 2024-07-11 11:02:28 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2024-07-19 11:44:04 +0200 |
commit | b7120388f8dd638aec33dc640f273d1a9016d676 (patch) | |
tree | 121d10495834fd4dcdf9d03d88f61e7080e9b56e /src/systemctl/systemctl-list-jobs.c | |
parent | terminal-util: remove terminal_vhangup() because apparently unused (diff) | |
download | systemd-b7120388f8dd638aec33dc640f273d1a9016d676.tar.xz systemd-b7120388f8dd638aec33dc640f273d1a9016d676.zip |
terminal-util: split out color macros/helpers into its own header
This is a lot of stuff, and sometimes quite wild, let's turn this into
its own header.
All stuff color-related that just generates sequences is now in
ansi-color.h (no .c file!), and everything more complex that
probes/ineracts with terminals remains in termina-util.[ch]
Diffstat (limited to 'src/systemctl/systemctl-list-jobs.c')
-rw-r--r-- | src/systemctl/systemctl-list-jobs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/systemctl/systemctl-list-jobs.c b/src/systemctl/systemctl-list-jobs.c index fcfe2ac561..2fecf61317 100644 --- a/src/systemctl/systemctl-list-jobs.c +++ b/src/systemctl/systemctl-list-jobs.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ +#include "ansi-color.h" #include "bus-error.h" #include "bus-locator.h" #include "locale-util.h" |