mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
libio: Assume _LIBC, weak_alias, errno, (__set_)errno &c are defined
Do not define _POSIX_SOURCE.
This commit is contained in:
@ -45,17 +45,13 @@ __ftello (_IO_FILE *fp)
|
||||
_IO_release_lock (fp);
|
||||
if (pos == _IO_pos_BAD)
|
||||
{
|
||||
#ifdef EIO
|
||||
if (errno == 0)
|
||||
__set_errno (EIO);
|
||||
#endif
|
||||
return -1L;
|
||||
}
|
||||
if ((_IO_off64_t) (off_t) pos != pos)
|
||||
{
|
||||
#ifdef EOVERFLOW
|
||||
__set_errno (EOVERFLOW);
|
||||
#endif
|
||||
return -1L;
|
||||
}
|
||||
return pos;
|
||||
|
Reference in New Issue
Block a user