diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-10-29 13:20:12 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-10-29 13:20:12 +0000 |
| commit | 864cff709fe3beefc3f2d94cda1854e74954cb74 (patch) | |
| tree | 0704aab2c884a709a0e62a856bf96b28f9cd6b5d | |
| parent | 4ce3f72cc66eb9e87830af59086a3604b29b4a38 (diff) | |
| download | rockbox-864cff709fe3beefc3f2d94cda1854e74954cb74.zip rockbox-864cff709fe3beefc3f2d94cda1854e74954cb74.tar.gz rockbox-864cff709fe3beefc3f2d94cda1854e74954cb74.tar.bz2 rockbox-864cff709fe3beefc3f2d94cda1854e74954cb74.tar.xz | |
added printf() proto
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2778 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 76ddd6b..28c2f2c 100644 --- a/uisimulator/x11/file.h +++ b/uisimulator/x11/file.h @@ -30,3 +30,4 @@ extern int open(char* pathname, int flags); extern int close(int fd); extern int read(int fd, void* buf, int count); extern int lseek(int fd, int offset, int whence); +extern int printf(const char *format, ...); |