Finish up FreeBSD4.0 support.

2000-05-10  Benjamin Kosnik  <bkoz@redhat.com>

	Finish up FreeBSD4.0 support.
	* config/bsd/ctype.cc: Scope out toupper, tolower calls.
	* config/generic/ctype.cc: And here.
	* testsuite/21_strings/char_traits.cc (test02): Guard with
	_GLIBCPP_USE_WCHAR_T.

From-SVN: r33831
This commit is contained in:
Benjamin Kosnik 2000-05-10 20:23:27 +00:00 committed by Benjamin Kosnik
parent 9a689793b0
commit f035fae1ed
4 changed files with 20 additions and 9 deletions

View File

@ -1,3 +1,11 @@
2000-05-10 Benjamin Kosnik <bkoz@redhat.com>
Finish up FreeBSD4.0 support.
* config/bsd/ctype.cc: Scope out toupper, tolower calls.
* config/generic/ctype.cc: And here.
* testsuite/21_strings/char_traits.cc (test02): Guard with
_GLIBCPP_USE_WCHAR_T.
2000-05-09 Benjamin Kosnik <bkoz@gnu.org>
* acinclude.m4 (GLIBCPP_CHECK_CPU): Change powerpc bits to

View File

@ -42,14 +42,14 @@
char
ctype<char>::do_toupper(char __c) const
{ return toupper((int) __c); }
{ return ::toupper((int) __c); }
const char*
ctype<char>::do_toupper(char* __low, const char* __high) const
{
while (__low < __high)
{
*__low = toupper((int) *__low);
*__low = ::toupper((int) *__low);
++__low;
}
return __high;
@ -57,14 +57,14 @@
char
ctype<char>::do_tolower(char __c) const
{ return tolower((int) __c); }
{ return ::tolower((int) __c); }
const char*
ctype<char>::do_tolower(char* __low, const char* __high) const
{
while (__low < __high)
{
*__low = tolower((int) *__low);
*__low = ::tolower((int) *__low);
++__low;
}
return __high;

View File

@ -42,14 +42,14 @@
char
ctype<char>::do_toupper(char __c) const
{ return toupper((int) __c); }
{ return ::toupper((int) __c); }
const char*
ctype<char>::do_toupper(char* __low, const char* __high) const
{
while (__low < __high)
{
*__low = toupper((int) *__low);
*__low = ::toupper((int) *__low);
++__low;
}
return __high;
@ -57,14 +57,14 @@
char
ctype<char>::do_tolower(char __c) const
{ return tolower((int) __c); }
{ return ::tolower((int) __c); }
const char*
ctype<char>::do_tolower(char* __low, const char* __high) const
{
while (__low < __high)
{
*__low = tolower((int) *__low);
*__low = ::tolower((int) *__low);
++__low;
}
return __high;

View File

@ -109,6 +109,7 @@ int test01(void)
return test;
}
#if _GLIBCPP_USE_WCHAR_T
int test02(void)
{
bool test = true;
@ -193,12 +194,14 @@ int test02(void)
return test;
}
#endif //_GLIBCPP_USE_WCHAR_T
int main()
{
test01();
#if _GLIBCPP_USE_WCHAR_T
test02();
#endif
}