diff options
author | Max Kellermann <max@duempel.org> | 2008-09-15 12:27:29 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-15 12:27:29 +0200 |
commit | 8fd244cc61c74522b93b59e75594902a01f936b5 (patch) | |
tree | bbf97cbda04f0ec9b0dd927ab941a541dc1f8fd7 /src/conf.c | |
parent | 2546fc394347548583c7bdcc15c23c7b17df6ea4 (diff) | |
download | mpd-8fd244cc61c74522b93b59e75594902a01f936b5.tar.gz mpd-8fd244cc61c74522b93b59e75594902a01f936b5.tar.xz mpd-8fd244cc61c74522b93b59e75594902a01f936b5.zip |
include cleanup
A header should include all headers which he needs. Move local
includes on top, and let foo.c include foo.h in the first line, to
automatically test its dependencies.
Diffstat (limited to 'src/conf.c')
-rw-r--r-- | src/conf.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/src/conf.c b/src/conf.c index 0e477db88..e4b6b70c5 100644 --- a/src/conf.c +++ b/src/conf.c @@ -18,6 +18,13 @@ * */ +#include "conf.h" +#include "config.h" +#include "ncmpc.h" +#include "support.h" +#include "command.h" +#include "colors.h" + #include <ctype.h> #include <stdio.h> #include <errno.h> @@ -28,16 +35,6 @@ #include <sys/stat.h> #include <fcntl.h> -#include <glib.h> -#include <ncurses.h> -#include "config.h" -#include "ncmpc.h" -#include "options.h" -#include "support.h" -#include "command.h" -#include "colors.h" -#include "conf.h" - #define MAX_LINE_LENGTH 1024 #define COMMENT_TOKEN '#' |