diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-10-05 14:21:57 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-10-05 16:14:37 +0200 |
commit | d8e32c471f6a52407184e421243b174f7480d180 (patch) | |
tree | 85e0209b3aa100e84b37be3c3a28c18583711ab1 /src/libsystemd | |
parent | basic: split out sync() family of calls from fs-util.[ch] into new c/h file (diff) | |
download | systemd-d8e32c471f6a52407184e421243b174f7480d180.tar.xz systemd-d8e32c471f6a52407184e421243b174f7480d180.zip |
basic: split out glyph/emoji related calls from locale-util.[ch] into glyph-util.[ch]
These functions are used pretty much independently of locale, i.e. the
only info relevant is whether th locale is UTF-8 or not. Hence let's
give this its own pair of .c/.h files.
Diffstat (limited to 'src/libsystemd')
-rw-r--r-- | src/libsystemd/sd-bus/bus-dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd/sd-bus/bus-dump.c b/src/libsystemd/sd-bus/bus-dump.c index d50cd1eedd..0a4b3cbf68 100644 --- a/src/libsystemd/sd-bus/bus-dump.c +++ b/src/libsystemd/sd-bus/bus-dump.c @@ -11,7 +11,7 @@ #include "capability-util.h" #include "fileio.h" #include "format-util.h" -#include "locale-util.h" +#include "glyph-util.h" #include "macro.h" #include "string-util.h" #include "strv.h" |