summaryrefslogtreecommitdiff
path: root/libio/fseeko64.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/fseeko64.c')
-rw-r--r--libio/fseeko64.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libio/fseeko64.c b/libio/fseeko64.c
index 9fbe308c56..70dc3703c8 100644
--- a/libio/fseeko64.c
+++ b/libio/fseeko64.c
@@ -37,17 +37,12 @@ fseeko64 (fp, offset, whence)
__off64_t offset;
int whence;
{
-#ifdef _G_LSEEK64
int result;
CHECK_FILE (fp, -1);
_IO_acquire_lock (fp);
result = _IO_fseek (fp, offset, whence);
_IO_release_lock (fp);
return result;
-#else
- __set_errno (ENOSYS);
- return -1;
-#endif
}
#endif