diff options
| author | Hardeep Sidhu <dyp@pobox.com> | 2003-07-01 23:43:29 +0000 |
|---|---|---|
| committer | Hardeep Sidhu <dyp@pobox.com> | 2003-07-01 23:43:29 +0000 |
| commit | 8dd3a822c7cf48ae23440697e8ba76415c441a55 (patch) | |
| tree | d4c0589acfce3b50f68869ad4f8d5d1fad10af7b | |
| parent | 730986a898c2be54c694f7314ea354f9fae7f357 (diff) | |
| download | rockbox-8dd3a822c7cf48ae23440697e8ba76415c441a55.zip rockbox-8dd3a822c7cf48ae23440697e8ba76415c441a55.tar.gz rockbox-8dd3a822c7cf48ae23440697e8ba76415c441a55.tar.bz2 rockbox-8dd3a822c7cf48ae23440697e8ba76415c441a55.tar.xz | |
Fixed simulator warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3798 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/x11/file.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/uisimulator/x11/file.h b/uisimulator/x11/file.h index 7658a1b..7212692 100644 --- a/uisimulator/x11/file.h +++ b/uisimulator/x11/file.h @@ -45,6 +45,7 @@ int open(const char* pathname, int flags); int close(int fd); int printf(const char *format, ...); int ftruncate(int fd, off_t length); +int fsync(int fd); off_t lseek(int fildes, off_t offset, int whence); ssize_t read(int fd, void *buf, size_t count); |