From f3ea834322de7f0400bb42b8f8019d6f8c78c93a Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Sun, 9 Oct 2011 17:39:11 +0200
Subject: [PATCH] decoder/{pcm,dsdiff}: add missing stdio.h include

---
 src/decoder/dsdiff_decoder_plugin.c | 1 +
 src/decoder/pcm_decoder_plugin.c    | 1 +
 src/decoder_thread.c                | 1 +
 3 files changed, 3 insertions(+)

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"