aboutsummaryrefslogtreecommitdiff
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.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/newlib/libc/syscalls/syslseek.c b/newlib/libc/syscalls/syslseek.c
deleted file mode 100644
index 57d6423e9..000000000
--- a/newlib/libc/syscalls/syslseek.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* connector for lseek */
-
-#include <reent.h>
-#include <unistd.h>
-
-off_t
-lseek (fd, pos, whence)
- int fd;
- off_t pos;
- int whence;
-{
-#ifdef REENTRANT_SYSCALLS_PROVIDED
- return _lseek_r (_REENT, fd, pos, whence);
-#else
- return _lseek (fd, pos, whence);
-#endif
-}