aboutsummaryrefslogtreecommitdiff
path: root/libio/ftello64.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/ftello64.c')
-rw-r--r--libio/ftello64.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libio/ftello64.c b/libio/ftello64.c
index 852ef71..9502f25 100644
--- a/libio/ftello64.c
+++ b/libio/ftello64.c
@@ -35,7 +35,6 @@ off64_t
ftello64 (fp)
_IO_FILE *fp;
{
-#ifdef _G_LSEEK64
_IO_off64_t pos;
CHECK_FILE (fp, -1L);
_IO_acquire_lock (fp);
@@ -55,10 +54,6 @@ ftello64 (fp)
return -1L;
}
return pos;
-#else
- __set_errno (ENOSYS);
- return -1;
-#endif
}
#endif