summaryrefslogtreecommitdiff
path: root/libc/stdio/_cs_funcs.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/_cs_funcs.c')
-rw-r--r--libc/stdio/_cs_funcs.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/stdio/_cs_funcs.c b/libc/stdio/_cs_funcs.c
index be416a450..7dfb120f5 100644
--- a/libc/stdio/_cs_funcs.c
+++ b/libc/stdio/_cs_funcs.c
@@ -13,11 +13,7 @@ int attribute_hidden __stdio_seek(FILE *stream, register __offmax_t *pos, int wh
{
__offmax_t res;
-#ifdef __UCLIBC_HAS_LFS__
res = lseek64(stream->__filedes, *pos, whence);
-#else
- res = lseek(stream->__filedes, *pos, whence);
-#endif
return (res >= 0) ? ((*pos = res), 0) : ((int) res);
}