diff options
Diffstat (limited to 'libc/stdio/fseeko.c')
-rw-r--r-- | libc/stdio/fseeko.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/fseeko.c b/libc/stdio/fseeko.c index 16b0c043a..781032a53 100644 --- a/libc/stdio/fseeko.c +++ b/libc/stdio/fseeko.c @@ -18,7 +18,7 @@ int FSEEK(register FILE *stream, OFFSET_TYPE offset, int whence) { -#if defined(__UCLIBC_HAS_LFS__) && !defined(__DO_LARGEFILE) +#if !defined(__DO_LARGEFILE) return fseeko64(stream, offset, whence); |