diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-03-14 12:40:29 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-03-14 13:25:51 +0100 |
commit | f05e1d0d9f21dd057bdf0f31d9bc3de509791eaa (patch) | |
tree | 97d9ca47bd370ab284d5a471af90de7a9353a5f3 /src/locale | |
parent | util: move display_is_local() to pam_systemd.c, its only user (diff) | |
download | systemd-f05e1d0d9f21dd057bdf0f31d9bc3de509791eaa.tar.xz systemd-f05e1d0d9f21dd057bdf0f31d9bc3de509791eaa.zip |
util: split out kbd related stuff
This stuff is neither generic enough to be in def.h, nor really has much
to do with locale, hence give it its own .c/.h file pair.
Diffstat (limited to 'src/locale')
-rw-r--r-- | src/locale/keymap-util.c | 4 | ||||
-rw-r--r-- | src/locale/localectl.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/locale/keymap-util.c b/src/locale/keymap-util.c index 6b6b32a591..64d18d916e 100644 --- a/src/locale/keymap-util.c +++ b/src/locale/keymap-util.c @@ -6,13 +6,13 @@ #include <unistd.h> #include "bus-util.h" -#include "def.h" -#include "env-file.h" #include "env-file-label.h" +#include "env-file.h" #include "env-util.h" #include "fd-util.h" #include "fileio-label.h" #include "fileio.h" +#include "kbd-util.h" #include "keymap-util.h" #include "locale-util.h" #include "macro.h" diff --git a/src/locale/localectl.c b/src/locale/localectl.c index 683b127ba1..c8b195d9a6 100644 --- a/src/locale/localectl.c +++ b/src/locale/localectl.c @@ -11,9 +11,9 @@ #include "bus-error.h" #include "bus-util.h" -#include "def.h" #include "fd-util.h" #include "fileio.h" +#include "kbd-util.h" #include "locale-util.h" #include "main-func.h" #include "memory-util.h" |