1999-04-14  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* wctype/wcfuncs.c (towlower): Use __ctype_tolower.
	Reported by Kalle Olavi Niemitalo <tosi@ees2.oulu.fi>
This commit is contained in:
Ulrich Drepper 1999-04-14 12:56:20 +00:00
parent b2900a1342
commit 1156499bae
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
1999-04-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* wctype/wcfuncs.c (towlower): Use __ctype_tolower.
Reported by Kalle Olavi Niemitalo <tosi@ees2.oulu.fi>
1999-04-12 Tim Waugh <tim@cyberelk.demon.co.uk>
* posix/wordexp-test.c: In field-splitting test cases where

View File

@ -76,7 +76,7 @@ wint_t
/* Character is not known. Default action is to simply return it. */
return wc;
return (wint_t) __ctype_toupper[idx];
return (wint_t) __ctype_tolower[idx];
}
wint_t