aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutputs/audioOutput_mvp.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-10 14:47:54 +0200
committerMax Kellermann <max@duempel.org>2008-10-10 14:47:54 +0200
commit7d9bedc3aa2d8495f80ef8b6a36f24fa2666d894 (patch)
treee7dfa98a60fb288ba1cdb9c45a4ca525855cfde9 /src/audioOutputs/audioOutput_mvp.c
parent8fc6b93afc27be3ba44cfc6f06dac43821e9c423 (diff)
downloadmpd-7d9bedc3aa2d8495f80ef8b6a36f24fa2666d894.tar.gz
mpd-7d9bedc3aa2d8495f80ef8b6a36f24fa2666d894.tar.xz
mpd-7d9bedc3aa2d8495f80ef8b6a36f24fa2666d894.zip
mvp: missing includes
Again, a plugin which was disabled in my test environment and suffered from compilation errors.
Diffstat (limited to '')
-rw-r--r--src/audioOutputs/audioOutput_mvp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/audioOutputs/audioOutput_mvp.c b/src/audioOutputs/audioOutput_mvp.c
index 00b069c3d..b57120148 100644
--- a/src/audioOutputs/audioOutput_mvp.c
+++ b/src/audioOutputs/audioOutput_mvp.c
@@ -26,6 +26,11 @@
#include "../utils.h"
#include "../log.h"
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/ioctl.h>
+#include <fcntl.h>
+
typedef struct {
unsigned long dsp_status;
unsigned long stream_decode_type;