ctype_noninline.h: Fix typo and remove duplicate definitions of __dj_ctype_*

2001-03-13  Andris Pavenis <pavenis@latnet.lv>

        * config/djgpp/bits/ctype_noninline.h: Fix typo and remove
	duplicate definitions of __dj_ctype_*

From-SVN: r40444
This commit is contained in:
Andris Pavenis 2001-03-13 22:10:01 +02:00 committed by Benjamin Kosnik
parent 77b8455903
commit fafcb5c937
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2001-03-13 Andris Pavenis <pavenis@latnet.lv>
* config/djgpp/bits/ctype_noninline.h: Fix typo and remove
duplicate definitions of __dj_ctype_*
2001-03-13 Benjamin Kosnik <bkoz@redhat.com> 2001-03-13 Benjamin Kosnik <bkoz@redhat.com>
* libsupc++/new: Remove pragma interface. * libsupc++/new: Remove pragma interface.

View File

@ -33,11 +33,6 @@
// Information as gleaned from DJGPP <ctype.h> // Information as gleaned from DJGPP <ctype.h>
// DJGPP specific code
extern unsigned short __dj_type_cflags[];
extern unsigned char __dj_ctype_toupper[];
extern unsigned char __dj_ctype_tolower[];
ctype<char>::ctype(const mask* __table = 0, bool __del = false, ctype<char>::ctype(const mask* __table = 0, bool __del = false,
size_t __refs = 0) size_t __refs = 0)
: __ctype_abstract_base<char>(__refs), : __ctype_abstract_base<char>(__refs),
@ -45,7 +40,7 @@ extern unsigned char __dj_ctype_tolower[];
_M_toupper(__dj_ctype_toupper), _M_toupper(__dj_ctype_toupper),
_M_tolower(__dj_ctype_tolower), _M_tolower(__dj_ctype_tolower),
_M_ctable(NULL), _M_ctable(NULL),
_M_table(__table == 0 ? __dj_type_cflags : __table) _M_table(__table == 0 ? __dj_ctype_flags : __table)
{ } { }
char char