mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Remove _IO_file_flags define.
This entirely mechanical (except for some indentation fixups) patch replaces all uses of _IO_file_flags with _flags and removes the #define. Installed stripped libraries and executables are unchanged by this patch. * libio/libio.h (_IO_file_flags): Remove macro. All uses changed to _flags.
This commit is contained in:
@ -74,7 +74,7 @@ void
|
||||
_IO_str_init_readonly (_IO_strfile *sf, const char *ptr, int size)
|
||||
{
|
||||
_IO_str_init_static_internal (sf, (char *) ptr, size < 0 ? -1 : size, NULL);
|
||||
sf->_sbf._f._IO_file_flags |= _IO_NO_WRITES;
|
||||
sf->_sbf._f._flags |= _IO_NO_WRITES;
|
||||
}
|
||||
|
||||
int
|
||||
|
Reference in New Issue
Block a user