diff options
author | Max Kellermann <max@duempel.org> | 2008-12-04 23:19:31 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-04 23:19:31 +0100 |
commit | 0128a9e91025c6d6dea145dabfa447150f8d9916 (patch) | |
tree | 88addd2e70ddeb246db01d7e712ce92b909f675a /src | |
parent | fe6292fa5c71cc02d13a446dfefc919ab72e3549 (diff) | |
download | mpd-0128a9e91025c6d6dea145dabfa447150f8d9916.tar.gz mpd-0128a9e91025c6d6dea145dabfa447150f8d9916.tar.xz mpd-0128a9e91025c6d6dea145dabfa447150f8d9916.zip |
stored_playlist: include time.h for the time_t type
On some systems, the time_t data type was not present, because
stored_playlist.h didn't include the time.h header directly.
Diffstat (limited to 'src')
-rw-r--r-- | src/stored_playlist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stored_playlist.h b/src/stored_playlist.h index 1ac5c33af..26dd163a1 100644 --- a/src/stored_playlist.h +++ b/src/stored_playlist.h @@ -22,6 +22,7 @@ #include "playlist.h" #include <glib.h> +#include <time.h> struct song; |