diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2009-02-19 09:19:42 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2009-02-19 09:19:42 +0000 |
commit | 2e10d61ccb8311e75df612a028873f212020057a (patch) | |
tree | 9deda8ab3fa78c9da759cb64ea38b111d0653635 /newlib/libc/stdlib/Makefile.am | |
parent | 3f60f7e544656eb9f701ca0cf6c4358fe9ae9400 (diff) | |
download | cygnal-2e10d61ccb8311e75df612a028873f212020057a.tar.gz cygnal-2e10d61ccb8311e75df612a028873f212020057a.tar.bz2 cygnal-2e10d61ccb8311e75df612a028873f212020057a.zip |
* libc/include/wchar.h (mbsnrtowcs): Declare.
(_mbsnrtowcs_r): Declare.
(wcsnrtombs): Declare.
(_wcsnrtombs_r): Declare.
* libc/stdlib/Makefile.am (ELIX_2_SOURCES): Add mbsnrtowcs.c
and wcsnrtombs.c.
* libc/stdlib/Makefile.in: Regenerate.
* libc/stdlib/mbsnrtowcs.c: New file, implementing _mbsnrtowcs_r
and mbsnrtowcs. Document mbsnrtowcs and mbsrtowcs.
* libc/stdlib/mbsrtowcs.c (_mbsrtowcs_r): Just call _mbsnrtowcs_r.
(mbsrtowcs): Ditto.
* libc/stdlib/wcsnrtombs.c: New file, implementing _wcsnrtombs_r
and wcsnrtombs. Document wcsrtombs and wcsnrtombs.
* libc/stdlib/wcsrtombs.c (_wcsrtombs_r): Just call _wcsnrtombs_r.
(wcsrtombs): Ditto.
* libc/stdlib/stdlib.tex: Accommodate new documentation.
Diffstat (limited to 'newlib/libc/stdlib/Makefile.am')
-rw-r--r-- | newlib/libc/stdlib/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/stdlib/Makefile.am b/newlib/libc/stdlib/Makefile.am index 9a9c013d7..6a9296e62 100644 --- a/newlib/libc/stdlib/Makefile.am +++ b/newlib/libc/stdlib/Makefile.am @@ -98,10 +98,12 @@ ELIX_2_SOURCES = \ mbrlen.c \ mbrtowc.c \ mbsinit.c \ + mbsnrtowcs.c \ mbsrtowcs.c \ on_exit.c \ valloc.c \ wcrtomb.c \ + wcsnrtombs.c \ wcsrtombs.c \ wctob.c |