OSDN Git Service

2001-03-13 Andris Pavenis <pavenis@latnet.lv>
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 13 Mar 2001 20:10:01 +0000 (20:10 +0000)
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 13 Mar 2001 20:10:01 +0000 (20:10 +0000)
        * config/djgpp/bits/ctype_noninline.h: Fix typo and remove
duplicate definitions of __dj_ctype_*

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40444 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/config/os/djgpp/bits/ctype_noninline.h

index fea829a..d2e3075 100644 (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>
 
        * libsupc++/new: Remove pragma interface.
index efc7958..dc81d91 100644 (file)
   
 // 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, 
        size_t __refs = 0) 
     : __ctype_abstract_base<char>(__refs), 
@@ -45,7 +40,7 @@ extern unsigned char __dj_ctype_tolower[];
       _M_toupper(__dj_ctype_toupper), 
       _M_tolower(__dj_ctype_tolower),
       _M_ctable(NULL), 
-      _M_table(__table == 0 ? __dj_type_cflags : __table) 
+      _M_table(__table == 0 ? __dj_ctype_flags : __table) 
     { }
 
   char