diff options
| author | Felix Arends <edx@rockbox.org> | 2003-02-14 20:51:10 +0000 |
|---|---|---|
| committer | Felix Arends <edx@rockbox.org> | 2003-02-14 20:51:10 +0000 |
| commit | e3403ecd9f218766ce64eed0ff6b6cd706391fa4 (patch) | |
| tree | 2aea1d6cbcffd2b4b9d63bb24e107376583070ea /firmware/include | |
| parent | e2628d99315c315ba52c5b9abe5ba9d4017e8386 (diff) | |
| download | rockbox-e3403ecd9f218766ce64eed0ff6b6cd706391fa4.zip rockbox-e3403ecd9f218766ce64eed0ff6b6cd706391fa4.tar.gz rockbox-e3403ecd9f218766ce64eed0ff6b6cd706391fa4.tar.bz2 rockbox-e3403ecd9f218766ce64eed0ff6b6cd706391fa4.tar.xz | |
this fixes the win32 simulator compilation
the simulator does not use the firmare\include path, instead it uses standard header files
those header files that do not exist in the SDK are placed in the win32 directory (dir.h, sprintf.h)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3264 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include')
| -rw-r--r-- | firmware/include/file.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/firmware/include/file.h b/firmware/include/file.h index ff70c01..6c81cb9 100644 --- a/firmware/include/file.h +++ b/firmware/include/file.h @@ -63,14 +63,7 @@ extern int write(int fd, void* buf, int count); extern int remove(const char* pathname); extern int rename(const char* path, const char* newname); extern int ftruncate(int fd, unsigned int size); - -#else -#ifdef WIN32 -#include <io.h> -#include <stdio.h> -#endif /* WIN32 */ #endif /* SIMULATOR */ - #endif /* __MINGW32__ */ #endif |