1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Remove _G_OPEN64, _G_LSEEK64, _G_MMAP64, _G_FSTAT64 from _G_config.h.

This commit is contained in:
Joseph Myers
2012-10-18 18:50:43 +00:00
parent b741de23e2
commit ced52c719c
12 changed files with 68 additions and 97 deletions

View File

@ -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