summaryrefslogtreecommitdiff
path: root/libc/stdio/ftello.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/ftello.c')
-rw-r--r--libc/stdio/ftello.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/ftello.c b/libc/stdio/ftello.c
index 219b6996a..f19735cb7 100644
--- a/libc/stdio/ftello.c
+++ b/libc/stdio/ftello.c
@@ -14,7 +14,7 @@
OFFSET_TYPE FTELL(register FILE *stream)
{
-#if defined(__UCLIBC_HAS_LFS__) && !defined(__DO_LARGEFILE)
+#if !defined(__DO_LARGEFILE)
__offmax_t pos = ftello64(stream);