1999-05-24  Ulrich Drepper  <drepper@cygnus.com>

	* ctype/ctype.h: Don't optimize toupper/tolower for C++.
This commit is contained in:
Ulrich Drepper 1999-05-24 16:21:12 +00:00
parent 8838786d31
commit 6843299d9b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1999-05-24 Ulrich Drepper <drepper@cygnus.com>
* ctype/ctype.h: Don't optimize toupper/tolower for C++.
1999-05-23 Roland McGrath <roland@baalperazim.frob.com>
* hurd/set-host.c (_hurd_set_host_config): Use mode 0644, not 0600.

View File

@ -163,7 +163,7 @@ toupper (int __c) __THROW
}
#endif
#if __GNUC__ >= 2 && defined __OPTIMIZE__
#if __GNUC__ >= 2 && defined __OPTIMIZE__ && !defined __cplusplus
# define __tobody(c, f, a) \
({ int __res; \
if (sizeof (c) > 1) \