diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:27:09 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:27:09 +0000 |
commit | 804088f5901fcc20cc80fb1dba6960703fc3cdf7 (patch) | |
tree | 003ab9cd86954529c1ca451e21a5ab196f1fe7ca /src/command.h | |
parent | dec2a063cd5fde4bde8e97fc572f41e884b136cb (diff) | |
download | mpd-804088f5901fcc20cc80fb1dba6960703fc3cdf7.tar.gz mpd-804088f5901fcc20cc80fb1dba6960703fc3cdf7.tar.xz mpd-804088f5901fcc20cc80fb1dba6960703fc3cdf7.zip |
command.h: include sllist.h which defines struct strnode
git-svn-id: https://svn.musicpd.org/mpd/trunk@7346 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/command.h b/src/command.h index 4d38b0f5f..be935c8b5 100644 --- a/src/command.h +++ b/src/command.h @@ -21,13 +21,12 @@ #include "gcc.h" #include "os_compat.h" +#include "sllist.h" #define COMMAND_RETURN_KILL 10 #define COMMAND_RETURN_CLOSE 20 #define COMMAND_MASTER_READY 30 -struct strnode; - int processListOfCommands(int fd, int *permission, int *expired, int listOK, struct strnode *list); |