From: David Edelsohn Date: Wed, 5 Jun 2002 15:14:20 +0000 (+0000) Subject: ctype_noninline.h (do_toupper,do_tolower): Call external symbol. X-Git-Tag: releases/gcc-3.1.1~201 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f9a7678f509b3aac308666df3c33ba2e720aa4e;p=thirdparty%2Fgcc.git 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 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0353cacc6146..131634162678 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2002-06-05 David Edelsohn + + * config/os/aix/bits/ctype_noninline.h (do_toupper,do_tolower): + Call external symbol. + 2002-06-05 Paolo Carlini * testsuite/22_locale/money_get_members_char.cc diff --git a/libstdc++-v3/config/os/aix/bits/ctype_noninline.h b/libstdc++-v3/config/os/aix/bits/ctype_noninline.h index 5dff2d1a84d1..f0bb31b121d1 100644 --- a/libstdc++-v3/config/os/aix/bits/ctype_noninline.h +++ b/libstdc++-v3/config/os/aix/bits/ctype_noninline.h @@ -52,7 +52,7 @@ char ctype::do_toupper(char __c) const - { return _toupper(__c); } + { return ::toupper((int) __c); } const char* ctype::do_toupper(char* __low, const char* __high) const @@ -67,7 +67,7 @@ char ctype::do_tolower(char __c) const - { return _tolower(__c); } + { return ::tolower((int) __c); } const char* ctype::do_tolower(char* __low, const char* __high) const