diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-29 06:50:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-29 06:50:10 +0000 |
commit | 01beb5b9ff8fb38f6517837b42eea8f5ff7060d9 (patch) | |
tree | 5c1b871d23c7d13cf5f6cdcbccb13c1ca281e09c /wcsmbs/Makefile | |
parent | 653e58951271cf55a3b2d778ea02107b9ea44d78 (diff) | |
download | glibc-01beb5b9ff8fb38f6517837b42eea8f5ff7060d9.zip glibc-01beb5b9ff8fb38f6517837b42eea8f5ff7060d9.tar.gz glibc-01beb5b9ff8fb38f6517837b42eea8f5ff7060d9.tar.bz2 |
Update.
2002-08-28 Ulrich Drepper <drepper@redhat.com>
* include/wchar.h: Declare __mbsrtowcs_l.
* wcsmbs/Makefile (routines): Add mbsrtowcs_l.
* wcsmbs/mbsrtowcs.c: Add support for compilation with
USE_IN_EXTENDED_LOCALE_MODEL.
* wcsmbs/mbsrtowcs_l: New file.
* wcsmbs/wcsmbsload.c (__wcsmbs_to_wc): Renamed from to_wc. Don't
define as static. Change all uses.
(__wcsmbs_getfct): Renamed from getfct. Don't define as static.
Change all callers.
* wcsmbs/wcsmbsload.h: Declare __wcsmbs_to_wc and __wcsmbs_getfct.
* time/strftime.c: When translating for the extended locale model
use the _l functions.
* time/Makefile (tests): Add tst-ftime_l.
* time/tst-ftime_l.c: New file.
Diffstat (limited to 'wcsmbs/Makefile')
-rw-r--r-- | wcsmbs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wcsmbs/Makefile b/wcsmbs/Makefile index 1b403f3..882084d 100644 --- a/wcsmbs/Makefile +++ b/wcsmbs/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995,1996,1997,1998,1999,2000 Free Software Foundation, Inc. +# Copyright (C) 1995-2000, 2002 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -37,7 +37,7 @@ routines := wcscat wcschr wcscmp wcscpy wcscspn wcsdup wcslen wcsncat \ wcwidth wcswidth \ wcscoll_l wcsxfrm_l \ wcscasecmp wcsncase wcscasecmp_l wcsncase_l \ - wcsmbsload + wcsmbsload mbsrtowcs_l tests := tst-wcstof wcsmbs-tst1 tst-wcsnlen tst-btowc tst-mbrtowc \ tst-wcrtomb |