This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository newlib.
from 5489240c1 Cygwin: fix declaration of __small_{v}sprintf new c66f16b2f Cygwin: tzcode resync: basics new 2452e0b80 Cygwin: tzcode resync: imports new 63ff2b84f Cygwin: tzcode resync: details new 2ce569ec9 Cygwin: move localtime.o build rule to end of file new 57625ac25 Cygwin: rename localtime.cc to localtime_wrapper.c new 49a843b40 Cygwin: convert localtime_wrapper.c to plain C source new 4d5efe1e1 Cygwin: revamp localtime.o build rule new 36b8811c3 Cygwin: add missing files to 'clean' build rule new 4914c426c Cygwin: drop useless comment
The 9 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: winsup/cygwin/Makefile.in | 20 +- winsup/cygwin/localtime.cc | 2597 ------------------------------ winsup/cygwin/tz_posixrules.h | 48 - winsup/cygwin/tzcode/README | 37 + winsup/cygwin/tzcode/localtime.c | 2493 ++++++++++++++++++++++++++++ winsup/cygwin/tzcode/localtime.c.patch | 61 + winsup/cygwin/tzcode/localtime_wrapper.c | 151 ++ winsup/cygwin/tzcode/namespace.h | 0 winsup/cygwin/tzcode/private.h | 795 +++++++++ winsup/cygwin/tzcode/tz_posixrules.h | 231 +++ winsup/cygwin/tzcode/tzfile.h | 174 ++ 11 files changed, 3959 insertions(+), 2648 deletions(-) delete mode 100644 winsup/cygwin/localtime.cc delete mode 100644 winsup/cygwin/tz_posixrules.h create mode 100644 winsup/cygwin/tzcode/README create mode 100644 winsup/cygwin/tzcode/localtime.c create mode 100644 winsup/cygwin/tzcode/localtime.c.patch create mode 100644 winsup/cygwin/tzcode/localtime_wrapper.c create mode 100644 winsup/cygwin/tzcode/namespace.h create mode 100644 winsup/cygwin/tzcode/private.h create mode 100644 winsup/cygwin/tzcode/tz_posixrules.h create mode 100644 winsup/cygwin/tzcode/tzfile.h