diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-07 04:37:18 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-07 04:37:18 +0000 |
commit | a529b416204403526663696b3dd9fbd567937b9b (patch) | |
tree | fc2b87dff24114f728540ff82a5753b745e30f01 /locale | |
parent | 70808a9bc6acb22db34258c903678a23e1d9a447 (diff) | |
download | glibc-a529b416204403526663696b3dd9fbd567937b9b.zip glibc-a529b416204403526663696b3dd9fbd567937b9b.tar.gz glibc-a529b416204403526663696b3dd9fbd567937b9b.tar.bz2 |
Update.
2001-08-06 Jakub Jelinek <jakub@redhat.com>
* stdlib/strtod.c (STRTOF): Skip whole infinity, not just inf.
* stdio-common/vfscanf.c (__vfscanf): +- can be followed by i in +-Inf.
* stdlib/tst-strtod.c (tests): Add Inf tests.
* stdio-common/tstscanf.c (main): Add tests for +- before Inf.
* locale/weightwc.h (findidx): Change type of i to int32_t.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/weightwc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/locale/weightwc.h b/locale/weightwc.h index 6a6f323..7eb7218 100644 --- a/locale/weightwc.h +++ b/locale/weightwc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1996-2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper, <drepper@cygnus.com>. @@ -21,7 +21,7 @@ static inline int32_t findidx (const wint_t **cpp) { - int_fast32_t i; + int32_t i; const wint_t *cp; wint_t ch; |