From b80ee165bdf5173d9a4f55f41b11a2ceaaae4c18 Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Wed, 5 Jun 2002 14:51:59 +0000 Subject: [PATCH] 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: r54284 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/config/os/aix/bits/ctype_noninline.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index e52bafa90d1..cce9633317b 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-04 Rainer Orth * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3_target_compile): diff --git a/libstdc++-v3/config/os/aix/bits/ctype_noninline.h b/libstdc++-v3/config/os/aix/bits/ctype_noninline.h index 5dff2d1a84d..f0bb31b121d 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