summaryrefslogtreecommitdiff
path: root/apps/wince/sword/include/unistd.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/wince/sword/include/unistd.h')
-rw-r--r--apps/wince/sword/include/unistd.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/apps/wince/sword/include/unistd.h b/apps/wince/sword/include/unistd.h
deleted file mode 100644
index c836995..0000000
--- a/apps/wince/sword/include/unistd.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef UNISTD_H
-#define UNISTD_H
-
-typedef long off_t;
-
-int close (int fd);
-int open(const char *path, int mode);
-int open(const char *path, int access, unsigned mode);
-int read(int fd, void* buf, size_t count);
-int write(int fd, const void * buf, size_t count);
-off_t lseek(int fildes, off_t offset, int whence);
-int access(const char* path, int mode);
-#define unlink ::remove
-
-#endif