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:
@ -29,7 +29,7 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
/* iofopen.c defines _IO_fopen64/fopen64 as aliases if O_LARGEFILE==0. */
|
||||
#if !defined _LIBC || (defined O_LARGEFILE && O_LARGEFILE != 0)
|
||||
#if defined O_LARGEFILE && O_LARGEFILE != 0
|
||||
|
||||
_IO_FILE *
|
||||
_IO_fopen64 (const char *filename, const char *mode)
|
||||
@ -37,8 +37,6 @@ _IO_fopen64 (const char *filename, const char *mode)
|
||||
return __fopen_internal (filename, mode, 0);
|
||||
}
|
||||
|
||||
#ifdef weak_alias
|
||||
weak_alias (_IO_fopen64, fopen64)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user