From 5f9a7678f509b3aac308666df3c33ba2e720aa4e Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Wed, 5 Jun 2002 15:14:20 +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: r54285 --- 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 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 -- 2.47.2