diff options
author | 2000-02-13 07:40:16 +0000 | |
---|---|---|
committer | 2000-02-13 07:40:16 +0000 | |
commit | b02b9253e0c1770707ed791f0aa274af79886932 (patch) | |
tree | c96810ca1b2a2c7cb6a5a8ed48584736b6eb3bf5 /wctype/wcfuncs.c | |
parent | Update. (diff) | |
download | glibc-b02b9253e0c1770707ed791f0aa274af79886932.tar.gz glibc-b02b9253e0c1770707ed791f0aa274af79886932.tar.bz2 glibc-b02b9253e0c1770707ed791f0aa274af79886932.zip |
Update.
2000-02-12 Ulrich Drepper <drepper@redhat.com>
* locale/nl_langinfo.h: Add casts to prevent warnings.
* wctype/iswctype_l.c: Use correct types for mapped data.
* wctype/wcfuncs.c: Add one more comment for clarification.
* wctype/wcfuncs_l.c: Use __ctype32_tolower and __ctype32_toupper.
* wctype/wctrans.c: Likewise.
Diffstat (limited to 'wctype/wcfuncs.c')
-rw-r--r-- | wctype/wcfuncs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wctype/wcfuncs.c b/wctype/wcfuncs.c index 2f60c4a650..fdb5dc7a70 100644 --- a/wctype/wcfuncs.c +++ b/wctype/wcfuncs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998, 1999, 2000 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 @@ -25,6 +25,8 @@ /* If the program is compiled without optimization the following declaration is not visible in the header. */ extern unsigned int *__ctype32_b; + +/* These are not exported. */ extern const uint32_t *__ctype32_toupper; extern const uint32_t *__ctype32_tolower; |