diff options
author | Zack Weinberg <zackw@panix.com> | 2018-02-07 19:41:01 -0500 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2018-02-21 14:22:50 -0500 |
commit | df6c012b99499d95ed7fee53553a9f4d4473ccae (patch) | |
tree | 09c971734b9a5d34ae9116966e828273ceaf83d7 /libio/libioP.h | |
parent | 177aad3ff637b32550aec8080314d76a189f7a03 (diff) | |
download | glibc-df6c012b99499d95ed7fee53553a9f4d4473ccae.tar.gz glibc-df6c012b99499d95ed7fee53553a9f4d4473ccae.tar.xz glibc-df6c012b99499d95ed7fee53553a9f4d4473ccae.zip |
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.
Diffstat (limited to 'libio/libioP.h')
-rw-r--r-- | libio/libioP.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/libioP.h b/libio/libioP.h index 5064bdf69d..ee23296ddb 100644 --- a/libio/libioP.h +++ b/libio/libioP.h @@ -761,7 +761,7 @@ extern struct _IO_fake_stdiobuf _IO_stdin_buf, _IO_stdout_buf, _IO_stderr_buf; #else /* This is part of the kludge for binary compatibility with old stdio. */ # define COERCE_FILE(FILE) \ - (((FILE)->_IO_file_flags & _IO_MAGIC_MASK) == _OLD_MAGIC_MASK \ + (((FILE)->_flags & _IO_MAGIC_MASK) == _OLD_MAGIC_MASK \ && (FILE) = *(FILE**)&((int*)fp)[1]) #endif @@ -775,7 +775,7 @@ extern struct _IO_fake_stdiobuf _IO_stdin_buf, _IO_stdout_buf, _IO_stderr_buf; # define CHECK_FILE(FILE, RET) \ if ((FILE) == NULL) { MAYBE_SET_EINVAL; return RET; } \ else { COERCE_FILE(FILE); \ - if (((FILE)->_IO_file_flags & _IO_MAGIC_MASK) != _IO_MAGIC) \ + if (((FILE)->_flags & _IO_MAGIC_MASK) != _IO_MAGIC) \ { MAYBE_SET_EINVAL; return RET; }} #else # define CHECK_FILE(FILE, RET) COERCE_FILE (FILE) |