ctype_noninline.h (do_toupper,do_tolower): Call external symbol.

* config/os/aix/bits/ctype_noninline.h (do_toupper,do_tolower):
        Call external symbol.

From-SVN: r54285
This commit is contained in:
David Edelsohn 2002-06-05 15:14:20 +00:00 committed by David Edelsohn
parent be17bfdb74
commit 5f9a7678f5
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-06-05 David Edelsohn <edelsohn@gnu.org>
* config/os/aix/bits/ctype_noninline.h (do_toupper,do_tolower):
Call external symbol.
2002-06-05 Paolo Carlini <pcarlini@unitus.it>
* testsuite/22_locale/money_get_members_char.cc

View File

@ -52,7 +52,7 @@
char
ctype<char>::do_toupper(char __c) const
{ return _toupper(__c); }
{ return ::toupper((int) __c); }
const char*
ctype<char>::do_toupper(char* __low, const char* __high) const
@ -67,7 +67,7 @@
char
ctype<char>::do_tolower(char __c) const
{ return _tolower(__c); }
{ return ::tolower((int) __c); }
const char*
ctype<char>::do_tolower(char* __low, const char* __high) const