diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-05-29 20:50:37 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-05-29 20:52:23 +0200 |
commit | 9dd008df456cdf564e01eae3c7ee8be3bf7162ce (patch) | |
tree | f5ca9ae5bf8fe81c8ef9c36ba2552ad49117fc45 /src/libsystemd-terminal/evcat.c | |
parent | 24882e06c135584f16f31ba8a00fecde8b7f6fad (diff) |
terminal: use signal-util.h and reorder includes
Diffstat (limited to 'src/libsystemd-terminal/evcat.c')
-rw-r--r-- | src/libsystemd-terminal/evcat.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/libsystemd-terminal/evcat.c b/src/libsystemd-terminal/evcat.c index d274225ed0..bfa166c489 100644 --- a/src/libsystemd-terminal/evcat.c +++ b/src/libsystemd-terminal/evcat.c @@ -35,19 +35,20 @@ #include <stdlib.h> #include <sys/ioctl.h> #include <sys/stat.h> -#include <systemd/sd-bus.h> -#include <systemd/sd-event.h> -#include <systemd/sd-login.h> #include <termios.h> #include <unistd.h> #include <xkbcommon/xkbcommon.h> +#include "sd-bus.h" +#include "sd-event.h" +#include "sd-login.h" #include "build.h" #include "event-util.h" -#include "idev.h" #include "macro.h" +#include "signal-util.h" +#include "util.h" +#include "idev.h" #include "sysview.h" #include "term-internal.h" -#include "util.h" typedef struct Evcat Evcat; |