1
0
Fork 0
forked from len0rd/rockbox

Revert r25854 which was bad for the database tool (I forgot it still needs the wrappers from uisimulator/common/io.c). Fix it so it works for both.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25856 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-05-06 22:17:34 +00:00
parent ab4a162763
commit 6ac64206f3
4 changed files with 4 additions and 11 deletions

View file

@ -25,9 +25,6 @@
#undef MAX_PATH /* this avoids problems when building simulator */
#define MAX_PATH 260
#ifdef __PCTOOL__
#include <fcntl.h>
#else
#include <sys/types.h>
#include "_ansi.h"
@ -88,7 +85,7 @@ static inline int creat(const char *pathname, mode_t mode)
(void)mode;
return file_creat(pathname);
}
#if !defined(CODEC) && !defined(PLUGIN)
#if !defined(CODEC) && !defined(PLUGIN) && !defined(__PCTOOL__)
#define open(x, y, ...) file_open(x,y)
#endif
#endif
@ -100,4 +97,3 @@ extern off_t filesize(int fd);
extern int release_files(int volume);
int fdprintf (int fd, const char *fmt, ...) ATTRIBUTE_PRINTF(2, 3);
#endif
#endif