1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

msvc: fix implicitly declared read/close.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Matthew Oliver 2014-08-02 11:08:29 +10:00 committed by Michael Niedermayer
parent 3fa9692ae2
commit 66627075d9
3 changed files with 11 additions and 0 deletions

View File

@ -39,6 +39,10 @@
#include <unistd.h>
#endif
#if HAVE_IO_H
#include <io.h>
#endif
/**
* Buffer management macros.
*/

View File

@ -32,6 +32,10 @@
#include <unistd.h>
#endif
#if HAVE_IO_H
#include <io.h>
#endif
#undef NDEBUG
#include <assert.h>

View File

@ -23,6 +23,9 @@
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#if HAVE_IO_H
#include <io.h>
#endif
#if HAVE_CRYPTGENRANDOM
#include <windows.h>
#include <wincrypt.h>