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 | |
| parent | c9fb0982505291c6efab4abfc805fc907c575933 (diff) | |
| download | rockbox-740dc631867bd7f050c314ecb39ae136b1f45d32.zip rockbox-740dc631867bd7f050c314ecb39ae136b1f45d32.tar.gz rockbox-740dc631867bd7f050c314ecb39ae136b1f45d32.tar.bz2 rockbox-740dc631867bd7f050c314ecb39ae136b1f45d32.tar.xz | |
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
| -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 e51dfba..6a19b5c 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__ |