int -> long where needed

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5643 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jean-Philippe Bernardy 2005-01-23 23:29:35 +00:00
parent 36b8e13f47
commit cea551dd9c
4 changed files with 22 additions and 22 deletions

View file

@ -86,7 +86,7 @@ extern ssize_t write(int fd, const void *buf, size_t count);
extern int remove(const char* pathname);
extern int rename(const char* path, const char* newname);
extern int ftruncate(int fd, off_t length);
extern int filesize(int fd);
extern off_t filesize(int fd);
#endif /* SIMULATOR */
#endif