diff options
| author | Hardeep Sidhu <dyp@pobox.com> | 2003-05-30 03:55:32 +0000 |
|---|---|---|
| committer | Hardeep Sidhu <dyp@pobox.com> | 2003-05-30 03:55:32 +0000 |
| commit | c516064fc3d43e8583f7f0baa0fc210c064c5f54 (patch) | |
| tree | f0a9fe232bf1663f8e876ad67fd192164b2d74cd | |
| parent | 71197f1d02186455fbacb2944ed6e41c3acbb1d5 (diff) | |
| download | rockbox-c516064fc3d43e8583f7f0baa0fc210c064c5f54.zip rockbox-c516064fc3d43e8583f7f0baa0fc210c064c5f54.tar.gz rockbox-c516064fc3d43e8583f7f0baa0fc210c064c5f54.tar.bz2 rockbox-c516064fc3d43e8583f7f0baa0fc210c064c5f54.tar.xz | |
Mingw doesn't like io.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3712 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/win32/file.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/uisimulator/win32/file.h b/uisimulator/win32/file.h index 6df32a3..4e13c81 100644 --- a/uisimulator/win32/file.h +++ b/uisimulator/win32/file.h @@ -19,8 +19,10 @@ #ifndef _FILE_H_ +#ifndef __MINGW32__ #include <io.h> #include <fcntl.h> +#endif int win32_rename(char *oldpath, char *newpath); int win32_filesize(int fd); |