os_support: Include io.h instead of direct.h on mingw32ce

Windows CE doesn't have neither mkdir nor _mkdir officially (only
CreateDirectoryW), but mingw32ce has compat wrappers with these names
(declared in io.h since direct.h is unavailable).

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2012-09-13 12:34:17 +03:00
parent 91ff4e83ca
commit 7b07fab567
1 changed files with 4 additions and 0 deletions

View File

@ -39,7 +39,11 @@
#endif /* defined(__MINGW32__) && !defined(__MINGW32CE__) */
#ifdef _WIN32
#ifdef __MINGW32CE__
#include <io.h>
#else
#include <direct.h>
#endif
#define mkdir(a, b) _mkdir(a)
#else
#include <sys/stat.h>