mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-05 09:01:07 +00:00
Update.
* ctype/ctype_l.c: Fix definitions of __tolower_l and __toupper_l. Reported by Konstantin Osipov <rabid@spylog.ru>.
This commit is contained in:
parent
951d5dd80f
commit
7e3f28752e
@ -1,5 +1,8 @@
|
|||||||
2001-04-10 Ulrich Drepper <drepper@redhat.com>
|
2001-04-10 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* ctype/ctype_l.c: Fix definitions of __tolower_l and __toupper_l.
|
||||||
|
Reported by Konstantin Osipov <rabid@spylog.ru>.
|
||||||
|
|
||||||
* sysdeps/i386/fpu/libm-test-ulps: Add deltas for tgamma to help
|
* sysdeps/i386/fpu/libm-test-ulps: Add deltas for tgamma to help
|
||||||
the lousy AMD FPU.
|
the lousy AMD FPU.
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1991, 1992, 1997 Free Software Foundation, Inc.
|
/* Copyright (C) 1991, 1992, 1997, 2001 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -39,11 +39,11 @@ func (__isxdigit_l, _ISxdigit)
|
|||||||
int
|
int
|
||||||
(__tolower_l) (int c, __locale_t l)
|
(__tolower_l) (int c, __locale_t l)
|
||||||
{
|
{
|
||||||
return __tolower_l (c, l);
|
return l->__ctype_tolower[c];
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
(__toupper_l) (int c, __locale_t l)
|
(__toupper_l) (int c, __locale_t l)
|
||||||
{
|
{
|
||||||
return __toupper_l (c, l);
|
return l->__ctype_toupper[c];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user