diff options
author | Björn Stenberg <bjorn@haxx.se> | 2005-01-24 07:15:57 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2005-01-24 07:15:57 +0000 |
commit | 3d53032176e451c56ffc99637b5e0b4fbe10ff60 (patch) | |
tree | 8354c73c1ae756387ee2c71f0d9071eb42775390 | |
parent | 6baa55a8ebb4815d62768e6d59347401fb5da1aa (diff) |
Fixed yellow build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5647 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | uisimulator/common/file.h | 2 |
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); |