aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-10-09 17:39:11 +0200
committerMax Kellermann <max@duempel.org>2011-10-09 17:40:37 +0200
commitf3ea834322de7f0400bb42b8f8019d6f8c78c93a (patch)
tree12cc28a079050871585dd62d83db67cc71afb814 /src
parent02a6a46e86b4818ba5e19f9ece3b15249143d5e5 (diff)
downloadmpd-f3ea834322de7f0400bb42b8f8019d6f8c78c93a.tar.gz
mpd-f3ea834322de7f0400bb42b8f8019d6f8c78c93a.tar.xz
mpd-f3ea834322de7f0400bb42b8f8019d6f8c78c93a.zip
decoder/{pcm,dsdiff}: add missing stdio.h include
Diffstat (limited to '')
-rw-r--r--src/decoder/dsdiff_decoder_plugin.c1
-rw-r--r--src/decoder/pcm_decoder_plugin.c1
-rw-r--r--src/decoder_thread.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/decoder/dsdiff_decoder_plugin.c b/src/decoder/dsdiff_decoder_plugin.c
index 367f8708b..255332a74 100644
--- a/src/decoder/dsdiff_decoder_plugin.c
+++ b/src/decoder/dsdiff_decoder_plugin.c
@@ -31,6 +31,7 @@
#include "dsd2pcm/dsd2pcm.h"
#include <unistd.h>
+#include <stdio.h> /* for SEEK_SET, SEEK_CUR */
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "dsdiff"
diff --git a/src/decoder/pcm_decoder_plugin.c b/src/decoder/pcm_decoder_plugin.c
index 24ad93cb6..abf3e7276 100644
--- a/src/decoder/pcm_decoder_plugin.c
+++ b/src/decoder/pcm_decoder_plugin.c
@@ -23,6 +23,7 @@
#include <glib.h>
#include <unistd.h>
+#include <stdio.h> /* for SEEK_SET */
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "pcm"
diff --git a/src/decoder_thread.c b/src/decoder_thread.c
index c2bb655ea..421efd32a 100644
--- a/src/decoder_thread.c
+++ b/src/decoder_thread.c
@@ -37,6 +37,7 @@
#include <glib.h>
#include <unistd.h>
+#include <stdio.h> /* for SEEK_SET */
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "decoder_thread"