This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from e4e7948 resolv: Remove IQUERY support new bf079e1 getopt: remove USE_NONOPTION_FLAGS new 7784135 getopt: merge from gnulib: don't use `...' quotes new 7f71f9c getopt: merge straightforward changes from gnulib new 7e161be getopt: fix fencepost error in ambiguous-W-option handling new 544ce84 getopt: clean up error reporting new 7a7be6c getopt: merge from gnulib: function prototype adjustments new c1af877 getopt: tidy up _getopt_initialize a bit new dfbea09 getopt: refactor long-option handling new aeacb9f getopt: merge from gnulib: alloca avoidance new 0f3be87 getopt: merge _GL_UNUSED annotations from gnulib new 10a33cf getopt: eliminate __need_getopt by splitting up getopt.h. new 06576cb getopt: annotate files with relationship to gnulib. new 893ba3e getopt: merge from gnulib: use angle-bracket includes consistently
The 13 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 | 123 ++++ config.h.in | 6 - csu/init-first.c | 8 - include/bits/getopt_core.h | 1 + include/bits/getopt_ext.h | 1 + include/bits/getopt_posix.h | 1 + include/getopt.h | 11 - include/libc-symbols.h | 43 ++ include/stdio.h | 2 + libio/stdio.h | 10 +- manual/getopt.texi | 3 - posix/Makefile | 10 +- posix/bits/getopt_core.h | 96 +++ posix/bits/getopt_ext.h | 77 +++ posix/bits/getopt_posix.h | 51 ++ posix/bug-getopt4.c | 16 +- posix/getopt.c | 1154 +++++++++++------------------------ posix/getopt.h | 179 +----- posix/getopt1.c | 67 +- posix/getopt_init.c | 74 --- posix/getopt_int.h | 93 ++- posix/tst-getopt-cancel.c | 284 +++++++++ posix/tst-getopt_long1.c | 2 +- posix/unistd.h | 3 +- stdio-common/fxprintf.c | 78 ++- sysdeps/mach/hurd/i386/init-first.c | 8 - 26 files changed, 1178 insertions(+), 1223 deletions(-) create mode 100644 include/bits/getopt_core.h create mode 100644 include/bits/getopt_ext.h create mode 100644 include/bits/getopt_posix.h create mode 100644 posix/bits/getopt_core.h create mode 100644 posix/bits/getopt_ext.h create mode 100644 posix/bits/getopt_posix.h delete mode 100644 posix/getopt_init.c create mode 100644 posix/tst-getopt-cancel.c