mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
libio: Assume _LIBC, weak_alias, errno, (__set_)errno &c are defined
Do not define _POSIX_SOURCE.
This commit is contained in:
@ -56,17 +56,13 @@ _IO_new_fgetpos (_IO_FILE *fp, _IO_fpos_t *posp)
|
||||
{
|
||||
/* ANSI explicitly requires setting errno to a positive value on
|
||||
failure. */
|
||||
#ifdef EIO
|
||||
if (errno == 0)
|
||||
__set_errno (EIO);
|
||||
#endif
|
||||
result = EOF;
|
||||
}
|
||||
else if ((_IO_off64_t) (__typeof (posp->__pos)) pos != pos)
|
||||
{
|
||||
#ifdef EOVERFLOW
|
||||
__set_errno (EOVERFLOW);
|
||||
#endif
|
||||
result = EOF;
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user