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:
@ -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
|
||||
|
Reference in New Issue
Block a user