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 /posix/regcomp.c | |
parent | afdca0f2a3a18fb0dcfc334c205e0fb96e90e839 (diff) | |
download | glibc-58845a7030dfca1812db98099cd7954c7449bac2.tar.gz glibc-58845a7030dfca1812db98099cd7954c7449bac2.tar.xz 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 'posix/regcomp.c')
-rw-r--r-- | posix/regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/regcomp.c b/posix/regcomp.c index eccb93e46e..bc9e56bd02 100644 --- a/posix/regcomp.c +++ b/posix/regcomp.c @@ -867,7 +867,7 @@ init_dfa (dfa, pat_len) else for (i = 0, ch = 0; i < BITSET_UINTS; ++i) for (j = 0; j < UINT_BITS; ++j, ++ch) - if (btowc (ch) != WEOF) + if (__btowc (ch) != WEOF) dfa->sb_char[i] |= 1 << j; } #endif |