]> sourceware.org Git - newlib-cygwin.git/commit - newlib/libc/include/sys/errno.h
* libc/include/langinfo.h: New file.
authorThomas Fitzsimmons <fitzsim@redhat.com>
Fri, 23 Aug 2002 01:56:05 +0000 (01:56 +0000)
committerThomas Fitzsimmons <fitzsim@redhat.com>
Fri, 23 Aug 2002 01:56:05 +0000 (01:56 +0000)
commit8d9112f2f3ac7c0aa656ceb8da7b4248df228833
tree237c3983e83fb5bd0ccbfff91a30844b7906afd3
parent1c5dcf3b0a42efcc8a7fcac148e2714d9766b871
* libc/include/langinfo.h: New file.
* libc/include/wchar.h: Likewise.
* libc/include/sys/syslimits.h: Likewise.
* libc/locale/fix_grouping.c: Likewise.
* libc/locale/ldpart.c: Likewise.
* libc/locale/ldpart.h: Likewise.
* libc/locale/lmessages.c: Likewise.
* libc/locale/lmessages.h: Likewise.
* libc/locale/lmonetary.c: Likewise.
* libc/locale/lmonetary.h: Likewise.
* libc/locale/lnumeric.c: Likewise.
* libc/locale/lnumeric.h: Likewise.
* libc/locale/nl_langinfo.3: Likewise.
* libc/locale/nl_langinfo.c: Likewise.
* libc/locale/timelocal.c: Likewise.
* libc/locale/timelocal.h: Likewise.
* libc/stdlib/btowc.c: Likewise.
* libc/stdlib/mbrlen.c: Likewise.
* libc/stdlib/mbrtowc.c: Likewise.
* libc/stdlib/mbsinit.c: Likewise.
* libc/stdlib/mbsrtowcs.c: Likewise.
* libc/stdlib/wcrtomb.c: Likewise.
* libc/stdlib/wcsrtombs.c: Likewise.
* libc/stdlib/wctob.c: Likewise.
* libc/sys/linux/prof-freq.c: Likewise.
* libc/sys/linux/profile.c: Likewise.
* libc/sys/linux/machine/i386/dl-procinfo.c: Likewise.
* libc/sys/linux/machine/i386/dl-procinfo.h: Likewise.
* libc/include/stdlib.h: Change re-entrant functions to take
mbstate_t pointers.
* libc/include/sys/_types.h: Define _mbstate_t.
* libc/include/sys/config.h (MB_LEN_MAX): New macro.
* libc/include/sys/errno.h (EILSEQ): New error code.
* libc/include/sys/reent.h: Include wchar.h.  Change reentrant
structure to use mbstate_t.
* libc/locale/Makefile.am (LIB_SOURCES): Add new files.
* libc/machine/powerpc/vfprintf.c: Use mbstate_t.
* libc/machine/powerpc/vfscanf.c: Likewise.
* libc/stdio/getdelim.c: Reallocate buffer only when necessary.
* libc/stdio/vfprintf.c: Likewise.
* libc/stdio/vfscanf.c: Likewise.
* libc/stdlib/Makefile.am (LIB_SOURCES): Add new files.
* libc/stdlib/mblen.c: Use mbstate_t.
* libc/stdlib/mblen_r.c: Likewise.
* libc/stdlib/mbstowcs.c: Likewise.
* libc/stdlib/mbstowcs_r.c: Likewise.
* libc/stdlib/mbtowc.c: Likewise.
* libc/stdlib/mbtowc_r.c: Likewise.
* libc/stdlib/wcstombs.c: Likewise.
* libc/stdlib/wcstombs_r.c: Likewise.
* libc/stdlib/wctomb_r.c: Likewise.
* libc/sys/linux/Makefile.am (LIB_SOURCES): Add prof-freq.c and
profile.c.
* libc/sys/linux/machine/i386/Makefile.am (LIB_SOURCES): Add
dl-procinfo.c.
* libc/sys/linux/sys/errno.h (EILSEQ): New error code.
* libc/sys/linux/sys/types.h (off_t): Define type.
* testsuite/newlib.locale/UTF-8.c: Change locale name from UTF-8
to C-UTF-8.
* testsuite/newlib.locale/UTF-8.exp: Likewise.
67 files changed:
newlib/ChangeLog
newlib/configure.host
newlib/libc/include/langinfo.h [new file with mode: 0644]
newlib/libc/include/stdlib.h
newlib/libc/include/sys/_types.h
newlib/libc/include/sys/config.h
newlib/libc/include/sys/errno.h
newlib/libc/include/sys/reent.h
newlib/libc/include/sys/syslimits.h [new file with mode: 0644]
newlib/libc/include/wchar.h [new file with mode: 0644]
newlib/libc/locale/Makefile.am
newlib/libc/locale/Makefile.in
newlib/libc/locale/fix_grouping.c [new file with mode: 0644]
newlib/libc/locale/ldpart.c [new file with mode: 0644]
newlib/libc/locale/ldpart.h [new file with mode: 0644]
newlib/libc/locale/lmessages.c [new file with mode: 0644]
newlib/libc/locale/lmessages.h [new file with mode: 0644]
newlib/libc/locale/lmonetary.c [new file with mode: 0644]
newlib/libc/locale/lmonetary.h [new file with mode: 0644]
newlib/libc/locale/lnumeric.c [new file with mode: 0644]
newlib/libc/locale/lnumeric.h [new file with mode: 0644]
newlib/libc/locale/nl_langinfo.3 [new file with mode: 0644]
newlib/libc/locale/nl_langinfo.c [new file with mode: 0644]
newlib/libc/locale/setlocale.h [new file with mode: 0644]
newlib/libc/locale/timelocal.c [new file with mode: 0644]
newlib/libc/locale/timelocal.h [new file with mode: 0644]
newlib/libc/machine/powerpc/vfprintf.c
newlib/libc/machine/powerpc/vfscanf.c
newlib/libc/machine/sh/Makefile.in
newlib/libc/stdio/getdelim.c
newlib/libc/stdio/vfprintf.c
newlib/libc/stdio/vfscanf.c
newlib/libc/stdio64/Makefile.in
newlib/libc/stdlib/Makefile.am
newlib/libc/stdlib/Makefile.in
newlib/libc/stdlib/btowc.c [new file with mode: 0644]
newlib/libc/stdlib/mblen.c
newlib/libc/stdlib/mblen_r.c
newlib/libc/stdlib/mbrlen.c [new file with mode: 0644]
newlib/libc/stdlib/mbrtowc.c [new file with mode: 0644]
newlib/libc/stdlib/mbsinit.c [new file with mode: 0644]
newlib/libc/stdlib/mbsrtowcs.c [new file with mode: 0644]
newlib/libc/stdlib/mbstowcs.c
newlib/libc/stdlib/mbstowcs_r.c
newlib/libc/stdlib/mbtowc.c
newlib/libc/stdlib/mbtowc_r.c
newlib/libc/stdlib/wcrtomb.c [new file with mode: 0644]
newlib/libc/stdlib/wcsrtombs.c [new file with mode: 0644]
newlib/libc/stdlib/wcstombs.c
newlib/libc/stdlib/wcstombs_r.c
newlib/libc/stdlib/wctob.c [new file with mode: 0644]
newlib/libc/stdlib/wctomb_r.c
newlib/libc/sys/linux/Makefile.am
newlib/libc/sys/linux/Makefile.in
newlib/libc/sys/linux/cmath/math_private.h
newlib/libc/sys/linux/fpathconf.c
newlib/libc/sys/linux/machine/i386/Makefile.am
newlib/libc/sys/linux/machine/i386/Makefile.in
newlib/libc/sys/linux/machine/i386/dl-procinfo.c [new file with mode: 0644]
newlib/libc/sys/linux/machine/i386/dl-procinfo.h [new file with mode: 0644]
newlib/libc/sys/linux/pathconf.c
newlib/libc/sys/linux/prof-freq.c [new file with mode: 0644]
newlib/libc/sys/linux/profile.c [new file with mode: 0644]
newlib/libc/sys/linux/sys/errno.h
newlib/libc/sys/linux/sys/types.h
newlib/testsuite/newlib.locale/UTF-8.c
newlib/testsuite/newlib.locale/UTF-8.exp
This page took 0.04343 seconds and 5 git commands to generate.