From: drepper Date: Sat, 6 Feb 1999 23:49:33 +0000 (+0000) Subject: (tolower): Don't use __tolower. X-Git-Tag: libc-as-990315~398 X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=commitdiff_plain;h=aa1ec5fc475605e81d7cac34144e3b916410f49d (tolower): Don't use __tolower. (toupper): Don't use toupper. --- diff --git a/ctype/ctype.c b/ctype/ctype.c index ce6d7097f0..61e7684d6f 100644 --- a/ctype/ctype.c +++ b/ctype/ctype.c @@ -39,11 +39,11 @@ func (isxdigit, _ISxdigit) int tolower (int c) { - return c >= -128 && c < 256 ? __tolower (c) : c; + return c >= -128 && c < 256 ? __ctype_tolower[c] : c; } int toupper (int c) { - return c >= -128 && c < 256 ? __toupper (c) : c; + return c >= -128 && c < 256 ? __ctype_toupper[c] : c; }