summaryrefslogtreecommitdiffstats
path: root/newlib/libc/syscalls/syslseek.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/syscalls/syslseek.c')
-rw-r--r--newlib/libc/syscalls/syslseek.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/newlib/libc/syscalls/syslseek.c b/newlib/libc/syscalls/syslseek.c
deleted file mode 100644
index 275d67ce4..000000000
--- a/newlib/libc/syscalls/syslseek.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* connector for lseek */
-
-#include <reent.h>
-#include <unistd.h>
-
-off_t
-_DEFUN (lseek, (fd, pos, whence),
- int fd _AND
- off_t pos _AND
- int whence)
-{
- return _lseek_r (_REENT, fd, pos, whence);
-}