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/mpdclient.h | |
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 '')
-rw-r--r-- | src/mpdclient.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mpdclient.h b/src/mpdclient.h index c8cb8686b..a93cec918 100644 --- a/src/mpdclient.h +++ b/src/mpdclient.h @@ -1,7 +1,10 @@ #ifndef MPDCLIENT_H #define MPDCLIENT_H + #include "libmpdclient.h" +#include <glib.h> + #define MPD_VERSION_EQ(c,x,y,z) (c->connection->version[0] == x && \ c->connection->version[1] == y && \ c->connection->version[2] == z ) |