summaryrefslogtreecommitdiffstats
path: root/tools/checkwps/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/checkwps/file.h')
-rw-r--r--tools/checkwps/file.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/checkwps/file.h b/tools/checkwps/file.h
deleted file mode 100644
index a14d7f5b91..0000000000
--- a/tools/checkwps/file.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef MAX_PATH
-#define MAX_PATH 260
-#endif
-
-/* Wrapper - required for O_RDONLY */
-
-#include <fcntl.h>
-
-extern ssize_t read(int fd, void *buf, size_t count);
-extern ssize_t write(int fd, const void *buf, size_t count);
-extern off_t lseek(int fildes, off_t offset, int whence);
-extern int close(int fd);
-
-/* strlcpy doesn't belong here (it's in string.h in the rockbox sources),
- * but this avoids complicated magic to override the system string.h */
-size_t strlcpy(char *dst, const char *src, size_t siz);