5 /* Wrapper - required for O_RDONLY */
9 extern ssize_t
read(int fd
, void *buf
, size_t count
);
10 extern ssize_t
write(int fd
, const void *buf
, size_t count
);
11 extern off_t
lseek(int fildes
, off_t offset
, int whence
);
12 extern int close(int fd
);
14 /* strlcpy doesn't belong here (it's in string.h in the rockbox sources),
15 * but this avoids complicated magic to override the system string.h */
16 size_t strlcpy(char *dst
, const char *src
, size_t siz
);