diff options
author | Zack Weinberg <zackw@panix.com> | 2018-02-07 19:21:54 -0500 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2018-02-21 14:13:21 -0500 |
commit | 177aad3ff637b32550aec8080314d76a189f7a03 (patch) | |
tree | 723dccbc1ca410f26efa1f49c741f0c188057a49 /libio/iofdopen.c | |
parent | 9964a14579e5eef925aaa82facc4980f627802fe (diff) | |
download | glibc-177aad3ff637b32550aec8080314d76a189f7a03.tar glibc-177aad3ff637b32550aec8080314d76a189f7a03.tar.gz glibc-177aad3ff637b32550aec8080314d76a189f7a03.tar.bz2 glibc-177aad3ff637b32550aec8080314d76a189f7a03.zip |
Remove legacy configuration knobs from libio.
This patch eliminates the "compatibility defines"
_IO_UNIFIED_JUMPTABLES (always defined to 1, used in a number of #ifs
which are therefore always false), _STDIO_USES_IOSTREAM (unused),
__HAVE_COLUMN (unused), _IO_BE (replaced with __glibc_unlikely), and
yet another redundant definition of EOF.
Installed stripped libraries are unchanged by this patch.
* libio/libio.h (_IO_UNIFIED_JUMPTABLES, _STDIO_USES_IOSTREAM)
(__HAVE_COLUMN, _IO_BE): Don't define.
(_IO_peekc_unlocked, _IO_getwc_unlocked, _IO_putwc_unlocked)
(_IO_fwide_maybe_incompatible): Use __glibc_unlikely.
* libio/libioP.h (EOF): Don't define.
* libio/iofdopen.c, libio/iofopen.c, libio/iopopen.c
* libio/iovdprintf.c, libio/oldiofdopen.c, libio/oldiofopen.c
* libio/oldiopopen.c, debug/vdprintf_chk.c: Remove #if block
testing _IO_UNIFIED_JUMPTABLES.
Diffstat (limited to 'libio/iofdopen.c')
-rw-r--r-- | libio/iofdopen.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libio/iofdopen.c b/libio/iofdopen.c index 39617365f5..21a53e30f6 100644 --- a/libio/iofdopen.c +++ b/libio/iofdopen.c @@ -137,9 +137,6 @@ _IO_new_fdopen (int fd, const char *mode) #endif &_IO_file_jumps; _IO_new_file_init_internal (&new_f->fp); -#if !_IO_UNIFIED_JUMPTABLES - new_f->fp.vtable = NULL; -#endif /* We only need to record the fd because _IO_file_init_internal will have unset the offset. It is important to unset the cached offset because the real offset in the file could change between |