diff options
author | Christian Hesse <mail@eworm.de> | 2016-10-07 08:52:20 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2016-10-07 08:52:20 +0200 |
commit | b3a0f6f65c9828314e60929dee16c0aa1de06158 (patch) | |
tree | 78d41fe5aeb3b06f3fd178ac4b1dfb98713827a8 | |
parent | 3e8fc40483ebed92ebd017eda1419005de2c2f4e (diff) | |
download | mpd-notification-b3a0f6f65c9828314e60929dee16c0aa1de06158.tar.gz mpd-notification-b3a0f6f65c9828314e60929dee16c0aa1de06158.tar.zst |
sort header files
-rw-r--r-- | mpd-notification.h | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/mpd-notification.h b/mpd-notification.h index 52fbec9..591b763 100644 --- a/mpd-notification.h +++ b/mpd-notification.h @@ -10,23 +10,20 @@ #define _GNU_SOURCE -#include <iniparser.h> - -#include <mpd/client.h> - -#include <libnotify/notify.h> +#include <getopt.h> +#include <regex.h> +#include <signal.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> +#include <iniparser.h> #ifdef HAVE_LIBAV #include <libavformat/avformat.h> #endif - -#include <stdio.h> -#include <unistd.h> -#include <stdlib.h> -#include <string.h> -#include <signal.h> -#include <getopt.h> -#include <regex.h> +#include <libnotify/notify.h> +#include <mpd/client.h> #include "config.h" #include "version.h" |