From 74ca8d6f5d2e29bb7cf4606531313ee8c52b9eda Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 27 Nov 2016 22:31:25 +0100 Subject: remove UCLIBC_HAS_LFS --- libc/stdio/_cs_funcs.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'libc/stdio/_cs_funcs.c') 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); } -- cgit v1.2.3