summaryrefslogtreecommitdiff
path: root/uisimulator/common/io.c
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2012-03-03 18:54:47 +0100
committerFrank Gevaerts <frank@gevaerts.be>2012-03-03 18:54:47 +0100
commitc6d20104eb1ba2beae266dff7eba655b9ab9576e (patch)
tree3d09bf6bb74b4d5a065c12ad732b76c68b28d340 /uisimulator/common/io.c
parentf7a4ee2ddce3e32551e209cccaf19d6d0f041600 (diff)
downloadrockbox-c6d20104eb1ba2beae266dff7eba655b9ab9576e.tar.gz
rockbox-c6d20104eb1ba2beae266dff7eba655b9ab9576e.zip
Fix __PCTOOL__ dependencies on SIMULATOR
* filesize() is not POSIX, so it doesn't need stubbing or redirecting * make the various directory functions use the sim_ versions for PCTOOL * PCTOOL needs generic byteswap functions * fix the database makefile to not use -DSIMULATOR anymore Change-Id: Ic6abc4f662830b85626c751a472fa4a03e844871
Diffstat (limited to 'uisimulator/common/io.c')
-rw-r--r--uisimulator/common/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c
index 1df36d3b34..6f9f4b2945 100644
--- a/uisimulator/common/io.c
+++ b/uisimulator/common/io.c
@@ -517,7 +517,7 @@ long sim_lseek(int fildes, long offset, int whence)
517 return lseek(fildes, offset, whence); 517 return lseek(fildes, offset, whence);
518} 518}
519 519
520long sim_filesize(int fd) 520long filesize(int fd)
521{ 521{
522#ifdef WIN32 522#ifdef WIN32
523 return _filelength(fd); 523 return _filelength(fd);