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/console | |
parent | 24882e06c135584f16f31ba8a00fecde8b7f6fad (diff) |
terminal: use signal-util.h and reorder includes
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/consoled.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/console/consoled.c b/src/console/consoled.c index 26dd068f5c..9f69e8983f 100644 --- a/src/console/consoled.c +++ b/src/console/consoled.c @@ -21,9 +21,10 @@ #include <errno.h> #include <stdlib.h> -#include "consoled.h" -#include "log.h" #include "sd-daemon.h" +#include "log.h" +#include "signal-util.h" +#include "consoled.h" int main(int argc, char *argv[]) { _cleanup_(manager_freep) Manager *m = NULL; |