diff options
author | Matthew Oliver <protogonoi@gmail.com> | 2014-08-02 11:08:29 +1000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-02 14:52:17 +0200 |
commit | 66627075d960c1c4ce977244a115ba1e82ebab9f (patch) | |
tree | 43d37364ef44fbfd9d58c57e9d507f20f15a06af /libavcodec/libxvid.c | |
parent | 3fa9692ae2324b8fcc1a8aa47b9a75826740b32e (diff) | |
download | ffmpeg-66627075d960c1c4ce977244a115ba1e82ebab9f.tar.gz |
msvc: fix implicitly declared read/close.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libxvid.c')
-rw-r--r-- | libavcodec/libxvid.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/libxvid.c b/libavcodec/libxvid.c index 3ec9524c93..b521e010e3 100644 --- a/libavcodec/libxvid.c +++ b/libavcodec/libxvid.c @@ -39,6 +39,10 @@ #include <unistd.h> #endif +#if HAVE_IO_H +#include <io.h> +#endif + /** * Buffer management macros. */ |