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.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/newlib/libc/syscalls/syslseek.c b/newlib/libc/syscalls/syslseek.c
index a1722471c..275d67ce4 100644
--- a/newlib/libc/syscalls/syslseek.c
+++ b/newlib/libc/syscalls/syslseek.c
@@ -9,9 +9,5 @@ _DEFUN (lseek, (fd, pos, whence),
off_t pos _AND
int whence)
{
-#ifdef REENTRANT_SYSCALLS_PROVIDED
return _lseek_r (_REENT, fd, pos, whence);
-#else
- return _lseek (fd, pos, whence);
-#endif
}