diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-03-05 10:54:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-03-05 10:54:16 +0000 |
commit | 58845a7030dfca1812db98099cd7954c7449bac2 (patch) | |
tree | e6cdcda157e52b49d33b62c736aeabba3900db81 /wctype | |
parent | afdca0f2a3a18fb0dcfc334c205e0fb96e90e839 (diff) | |
download | glibc-58845a7030dfca1812db98099cd7954c7449bac2.tar glibc-58845a7030dfca1812db98099cd7954c7449bac2.tar.gz glibc-58845a7030dfca1812db98099cd7954c7449bac2.tar.bz2 glibc-58845a7030dfca1812db98099cd7954c7449bac2.zip |
Update.
* include/wctype.h: Add libc_hidden_proto for __towctrans.
* wctype/towctrans.c: Add libc_hidden_def.
* libio/memstream.c (open_memstream): Use _IO_init with INTUSE.
* posix/regexec.c (transit_state): Remove unused variable
next_state.
* posix/regcomp.c (init_dfa): Use __btowc instead of btowc.
Diffstat (limited to 'wctype')
-rw-r--r-- | wctype/towctrans.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wctype/towctrans.c b/wctype/towctrans.c index 78ee3cbc92..6e3c466a6e 100644 --- a/wctype/towctrans.c +++ b/wctype/towctrans.c @@ -1,5 +1,5 @@ /* Map wide character using given mapping. - Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 2000, 2004 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 @@ -32,4 +32,5 @@ __towctrans (wint_t wc, wctrans_t desc) return wctrans_table_lookup ((const char *) desc, wc); } +libc_hidden_def (__towctrans) weak_alias (__towctrans, towctrans) |