summaryrefslogtreecommitdiffstats
path: root/libmpdemux/stream_file.c
diff options
context:
space:
mode:
authorfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-10-13 12:13:49 +0000
committerfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-10-13 12:13:49 +0000
commit1bd75f8c747b2e45f674da443c02d0a8573a9e42 (patch)
treec6fb38747347431bb1c330d06b467090fa95aa35 /libmpdemux/stream_file.c
parent5a8e327a4056f245df5b8a99c4fa32d856b0941c (diff)
downloadmpv-1bd75f8c747b2e45f674da443c02d0a8573a9e42.tar.bz2
mpv-1bd75f8c747b2e45f674da443c02d0a8573a9e42.tar.xz
we need stdio.h for SEEK_SET on mingw, patch by Zuxy <zuxy.meng at gmail.com>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16749 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/stream_file.c')
-rw-r--r--libmpdemux/stream_file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libmpdemux/stream_file.c b/libmpdemux/stream_file.c
index 2be2fc3982..241c1cffa5 100644
--- a/libmpdemux/stream_file.c
+++ b/libmpdemux/stream_file.c
@@ -1,6 +1,7 @@
#include "config.h"
+#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>