diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-02-14 23:52:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-02-14 23:52:18 +0000 |
commit | a62fd981b2004a9c442bd82016ba086866024b64 (patch) | |
tree | 9856cdc06e5c2fc8abfd2c83e65b47b2871102e1 /uisimulator | |
parent | 603975b4a20da16a2a67cc0e2a8e13f3305ad43d (diff) |
added the missing write()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3268 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-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 ff8d4af451..cf77eea4ba 100644 --- a/uisimulator/x11/file.h +++ b/uisimulator/x11/file.h @@ -43,5 +43,6 @@ extern int printf(const char *format, ...); off_t lseek(int fildes, off_t offset, int whence); ssize_t read(int fd, void *buf, size_t count); +ssize_t write(int fd, const void *buf, size_t count); #endif |