summaryrefslogtreecommitdiff
path: root/tools/checkwps/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/checkwps/file.h')
-rw-r--r--tools/checkwps/file.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/checkwps/file.h b/tools/checkwps/file.h
index 4256c1ee37..a14d7f5b91 100644
--- a/tools/checkwps/file.h
+++ b/tools/checkwps/file.h
@@ -5,3 +5,12 @@
5/* Wrapper - required for O_RDONLY */ 5/* Wrapper - required for O_RDONLY */
6 6
7#include <fcntl.h> 7#include <fcntl.h>
8
9extern ssize_t read(int fd, void *buf, size_t count);
10extern ssize_t write(int fd, const void *buf, size_t count);
11extern off_t lseek(int fildes, off_t offset, int whence);
12extern int close(int fd);
13
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 */
16size_t strlcpy(char *dst, const char *src, size_t siz);