diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-08-27 21:20:10 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-08-27 21:20:10 +0000 |
commit | 7d08241b68428bba98089eb841cef8eddd87f27b (patch) | |
tree | 55ed9328010779bb79f48cdcda41c40216a2d421 /newlib/libc/stdlib/Makefile.am | |
parent | ff2bf8523ba2d3db2fca8e9e2f8be1e4752fa57b (diff) | |
download | cygnal-7d08241b68428bba98089eb841cef8eddd87f27b.tar.gz cygnal-7d08241b68428bba98089eb841cef8eddd87f27b.tar.bz2 cygnal-7d08241b68428bba98089eb841cef8eddd87f27b.zip |
2002-08-27 Egor Duda <deo@logos-m.ru>
* libc/stdlib/wmemchr.c: New file.
* libc/stdlib/wmemcmp.c: Ditto.
* libc/stdlib/wmemcpy.c: Ditto.
* libc/stdlib/wmemmove.c: Ditto.
* libc/stdlib/wmemset.c: Ditto.
* libc/stdlib/Makefile.am (GENERAL_SOURCES): Add new files.
* configure.host: Default -DMB_CAPABLE for cygwin.
* libc/include/wchar.h: Declare wmemchr(), wmemcmp(), wmemcpy(),
wmemmove() and wmemset(). Add include of <_ansi.h>.
* libc/stdlib/Makefile.in: Regenerate.
Diffstat (limited to 'newlib/libc/stdlib/Makefile.am')
-rw-r--r-- | newlib/libc/stdlib/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/Makefile.am b/newlib/libc/stdlib/Makefile.am index cdd7987a0..d90c8fad4 100644 --- a/newlib/libc/stdlib/Makefile.am +++ b/newlib/libc/stdlib/Makefile.am @@ -49,7 +49,12 @@ GENERAL_SOURCES = \ wcstombs.c \ wcstombs_r.c \ wctomb.c \ - wctomb_r.c + wctomb_r.c \ + wmemchr.c \ + wmemcmp.c \ + wmemcpy.c \ + wmemmove.c \ + wmemset.c EXTENDED_SOURCES = \ drand48.c \ |