This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository newlib.
from b1743c94e Cygwin: console, pty: Fix segfault in child_info_spawn::worker(). new 5cd957ff6 newlib: xstormy16: fix mallopt definition & mstats handling new 8c383e9ae newlib: xstormy16: break up mallocr stubs new b2d4dc167 newlib: xstormy16: move malloc multiplex logic from build to [...]
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: newlib/libc/machine/xstormy16/Makefile.am | 83 ++-------- newlib/libc/machine/xstormy16/Makefile.in | 175 ++++++++++++--------- newlib/libc/machine/xstormy16/calloc.c | 2 + newlib/libc/machine/xstormy16/callocr.c | 7 + newlib/libc/machine/xstormy16/cfree.c | 2 + newlib/libc/machine/xstormy16/freer.c | 7 + newlib/libc/machine/xstormy16/malign.c | 2 + newlib/libc/machine/xstormy16/malloc.c | 4 + newlib/libc/machine/xstormy16/mallocr.c | 26 --- .../{stdlib/msizer.c => machine/xstormy16/msize.c} | 2 +- newlib/libc/machine/xstormy16/mstats.c | 6 + newlib/libc/machine/xstormy16/realloc.c | 2 + newlib/libc/machine/xstormy16/reallocr.c | 7 + newlib/libc/machine/xstormy16/valloc.c | 4 + 14 files changed, 162 insertions(+), 167 deletions(-) create mode 100644 newlib/libc/machine/xstormy16/calloc.c create mode 100644 newlib/libc/machine/xstormy16/callocr.c create mode 100644 newlib/libc/machine/xstormy16/cfree.c create mode 100644 newlib/libc/machine/xstormy16/freer.c create mode 100644 newlib/libc/machine/xstormy16/malign.c create mode 100644 newlib/libc/machine/xstormy16/malloc.c copy newlib/libc/{stdlib/msizer.c => machine/xstormy16/msize.c} (57%) create mode 100644 newlib/libc/machine/xstormy16/mstats.c create mode 100644 newlib/libc/machine/xstormy16/realloc.c create mode 100644 newlib/libc/machine/xstormy16/reallocr.c create mode 100644 newlib/libc/machine/xstormy16/valloc.c