diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-11-04 22:33:00 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-11-04 22:33:00 +0000 |
commit | 740dc631867bd7f050c314ecb39ae136b1f45d32 (patch) | |
tree | 576c0bacb4cce8276cb9206e46ca14a730848877 /uisimulator/win32/dir-win32.h | |
parent | c9fb0982505291c6efab4abfc805fc907c575933 (diff) |
somewhat kludgey work-around to prevent the <io.h>'s version of the mkdir()
proto to ruin our compile
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2804 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32/dir-win32.h')
-rw-r--r-- | uisimulator/win32/dir-win32.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/uisimulator/win32/dir-win32.h b/uisimulator/win32/dir-win32.h index e51dfba747..6a19b5c535 100644 --- a/uisimulator/win32/dir-win32.h +++ b/uisimulator/win32/dir-win32.h @@ -20,8 +20,10 @@ #ifndef __FILE_WIN32_H__ #define __FILE_WIN32_H__ +#define mkdir(x) dos_mkdir(x) + #include <io.h> #include "dir.h" -#endif // #ifndef __FILE_WIN32_H__
\ No newline at end of file +#endif // #ifndef __FILE_WIN32_H__ |