diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-09-19 01:56:12 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-09-22 16:32:04 +0200 |
commit | 6f2deb8447a64434b861f807f4e58ebc24883fde (patch) | |
tree | df4721b611ac880a4c424889d91de1c1d9c466f1 | |
parent | c077529ba6852192c464772ce907670850210dfe (diff) |
notify: sort header files, follow CODING_STYLE
-rw-r--r-- | src/notify/notify.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/notify/notify.c b/src/notify/notify.c index 772e3db69d..7d53cb6d75 100644 --- a/src/notify/notify.c +++ b/src/notify/notify.c @@ -19,20 +19,20 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ -#include <stdio.h> -#include <getopt.h> #include <errno.h> -#include <unistd.h> +#include <getopt.h> +#include <stdio.h> #include <stdlib.h> +#include <unistd.h> -#include "systemd/sd-daemon.h" +#include "sd-daemon.h" -#include "strv.h" -#include "util.h" -#include "log.h" #include "build.h" #include "env-util.h" #include "formats-util.h" +#include "log.h" +#include "strv.h" +#include "util.h" static bool arg_ready = false; static pid_t arg_pid = 0; |