This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from 8b4a118222 Fix -Os gnu_dev_* linknamespace, localplt issues (bug 15105, [...] new a4fea3f2c3 Don't install libio.h or _G_config.h. new 6c6c962a20 Post-cleanup 1: move libio.h back out of bits/. new 63fb8f9aa9 Post-cleanup 2: minimize _G_config.h.
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog | 109 ++++++ NEWS | 4 + bits/_G_config.h | 62 ---- conform/data/stdio.h-data | 2 +- csu/init.c | 13 +- include/bits/libio.h | 45 --- include/bits/types/__fpos64_t.h | 1 + include/bits/types/__fpos_t.h | 1 + include/bits/types/cookie_io_functions_t.h | 1 + include/bits/types/struct_FILE.h | 1 + include/stdio.h | 33 +- libio/Makefile | 9 +- libio/_G_config.h | 25 -- libio/bits/libio-ldbl.h | 29 -- libio/bits/libio.h | 527 ----------------------------- libio/bits/stdio.h | 29 +- libio/bits/stdio2.h | 35 +- libio/bits/types/__fpos64_t.h | 16 + libio/bits/types/__fpos_t.h | 16 + libio/bits/types/cookie_io_functions_t.h | 63 ++++ libio/bits/types/struct_FILE.h | 120 +++++++ libio/filedoalloc.c | 2 +- libio/fileops.c | 2 +- libio/iofdopen.c | 4 +- libio/iofopen.c | 2 +- libio/iolibio.h | 6 + libio/libio.h | 404 +++++++++++++++++++++- libio/libioP.h | 27 +- libio/stdio.h | 95 +++--- scripts/check-installed-headers.sh | 5 - sysdeps/generic/_G_config.h | 15 + sysdeps/ieee754/ldbl-opt/nldbl-compat.h | 13 +- sysdeps/unix/sysv/linux/_G_config.h | 15 + sysdeps/unix/sysv/linux/bits/_G_config.h | 63 ---- 34 files changed, 915 insertions(+), 879 deletions(-) delete mode 100644 bits/_G_config.h delete mode 100644 include/bits/libio.h create mode 100644 include/bits/types/__fpos64_t.h create mode 100644 include/bits/types/__fpos_t.h create mode 100644 include/bits/types/cookie_io_functions_t.h create mode 100644 include/bits/types/struct_FILE.h delete mode 100644 libio/_G_config.h delete mode 100644 libio/bits/libio-ldbl.h delete mode 100644 libio/bits/libio.h create mode 100644 libio/bits/types/__fpos64_t.h create mode 100644 libio/bits/types/__fpos_t.h create mode 100644 libio/bits/types/cookie_io_functions_t.h create mode 100644 libio/bits/types/struct_FILE.h create mode 100644 sysdeps/generic/_G_config.h create mode 100644 sysdeps/unix/sysv/linux/_G_config.h delete mode 100644 sysdeps/unix/sysv/linux/bits/_G_config.h