summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2005-01-24 07:15:57 +0000
committerBjörn Stenberg <bjorn@haxx.se>2005-01-24 07:15:57 +0000
commit3d53032176e451c56ffc99637b5e0b4fbe10ff60 (patch)
tree8354c73c1ae756387ee2c71f0d9071eb42775390
parent6baa55a8ebb4815d62768e6d59347401fb5da1aa (diff)
downloadrockbox-3d53032176e451c56ffc99637b5e0b4fbe10ff60.tar.gz
rockbox-3d53032176e451c56ffc99637b5e0b4fbe10ff60.zip
Fixed yellow build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5647 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/common/file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/common/file.h b/uisimulator/common/file.h
index 0e50031556..7ea59a0b74 100644
--- a/uisimulator/common/file.h
+++ b/uisimulator/common/file.h
@@ -43,7 +43,7 @@ typedef unsigned int mode_t;
int sim_open(const char *name, int opts);
int sim_close(int fd);
int sim_rename(const char *oldpath, const char *newpath);
-int sim_filesize(int fd);
+off_t sim_filesize(int fd);
int sim_creat(const char *name, mode_t mode);
int sim_remove(const char *name);