diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2008-07-24 17:55:26 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2008-07-24 17:55:26 +0000 |
commit | 410c1d122d8c65b747d55138f00d32d5c1b607bc (patch) | |
tree | 1c79013a437be482424bf836a13763675a69ad67 | |
parent | 854c14daa49cdfba803e9c3370592a4df379877d (diff) | |
download | cygnal-410c1d122d8c65b747d55138f00d32d5c1b607bc.tar.gz cygnal-410c1d122d8c65b747d55138f00d32d5c1b607bc.tar.bz2 cygnal-410c1d122d8c65b747d55138f00d32d5c1b607bc.zip |
2008-07-24 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/ctype.h (_ctype_): Restore for C++ backward
compatability only.
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/libc/include/ctype.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index f8f45ae38..a3ed9413a 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2008-07-24 Jeff Johnston <jjohnstn@redhat.com> + + * libc/include/ctype.h (_ctype_): Restore for C++ backward + compatability only. + 2008-07-21 Jeff Johnston <jjohnstn@redhat.com> * libc/ctype/ctype_.c: Add new pointer __ctype_ptr__ which is one diff --git a/newlib/libc/include/ctype.h b/newlib/libc/include/ctype.h index 9014dbe4f..17a486ebb 100644 --- a/newlib/libc/include/ctype.h +++ b/newlib/libc/include/ctype.h @@ -67,6 +67,9 @@ extern __IMPORT _CONST char *__ctype_ptr__; #define toascii(c) ((c)&0177) #endif +/* For C++ backward-compatibility only. */ +extern __IMPORT _CONST char _ctype_[]; + _END_STD_C #endif /* _CTYPE_H_ */ |