mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
2002-09-23 Roland McGrath <roland@redhat.com>
* ctype/ctype.c (__ctype_tolower, __ctype_toupper): Cast to int32_t instead of uint32_t in these macros.
This commit is contained in:
parent
fa00744e51
commit
d45c148997
@ -37,9 +37,9 @@ func (isupper, _ISupper)
|
||||
func (isxdigit, _ISxdigit)
|
||||
|
||||
#define __ctype_tolower \
|
||||
((uint32_t *) _NL_CURRENT (LC_CTYPE, _NL_CTYPE_TOLOWER) + 128)
|
||||
((int32_t *) _NL_CURRENT (LC_CTYPE, _NL_CTYPE_TOLOWER) + 128)
|
||||
#define __ctype_toupper \
|
||||
((uint32_t *) _NL_CURRENT (LC_CTYPE, _NL_CTYPE_TOUPPER) + 128)
|
||||
((int32_t *) _NL_CURRENT (LC_CTYPE, _NL_CTYPE_TOUPPER) + 128)
|
||||
|
||||
int
|
||||
tolower (int c)
|
||||
|
Loading…
Reference in New Issue
Block a user