diff options
author | Max Kellermann <max@duempel.org> | 2008-10-10 14:47:54 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-10 14:47:54 +0200 |
commit | 7d9bedc3aa2d8495f80ef8b6a36f24fa2666d894 (patch) | |
tree | e7dfa98a60fb288ba1cdb9c45a4ca525855cfde9 /src/audioOutputs | |
parent | 8fc6b93afc27be3ba44cfc6f06dac43821e9c423 (diff) | |
download | mpd-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 'src/audioOutputs')
-rw-r--r-- | src/audioOutputs/audioOutput_mvp.c | 5 |
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; |