From 2f55be001009104295dcdcde08da86775c1ccb8a Mon Sep 17 00:00:00 2001 From: Simon Schubert Date: Thu, 9 Jun 2005 23:38:00 +0000 Subject: [PATCH] Fix ctype::is() by using the right array --- gnu/lib/gcc34/libstdc++/ctype_noninline.h.patch | 6 +++--- gnu/lib/gcc40/libstdc++/ctype_noninline.h.patch | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gnu/lib/gcc34/libstdc++/ctype_noninline.h.patch b/gnu/lib/gcc34/libstdc++/ctype_noninline.h.patch index 26c9f94ef6..8a85068676 100644 --- a/gnu/lib/gcc34/libstdc++/ctype_noninline.h.patch +++ b/gnu/lib/gcc34/libstdc++/ctype_noninline.h.patch @@ -1,4 +1,4 @@ -$DragonFly: src/gnu/lib/gcc34/libstdc++/ctype_noninline.h.patch,v 1.1 2005/03/16 06:38:26 joerg Exp $ +$DragonFly: src/gnu/lib/gcc34/libstdc++/ctype_noninline.h.patch,v 1.2 2005/06/09 23:38:00 corecode Exp $ Index: ctype_noninline.h =================================================================== @@ -12,12 +12,12 @@ diff -u -r1.3 ctype_noninline.h // Information as gleaned from /usr/include/ctype.h - extern "C" const u_int8_t _C_ctype_[]; -+ extern "C" const __uint16_t __libc_ctype_[]; ++ extern "C" const __uint16_t __libc_C_ctype_[]; const ctype_base::mask* ctype::classic_table() throw() - { return _C_ctype_ + 1; } -+ { return __libc_ctype_ + 1; } ++ { return __libc_C_ctype_ + 1; } ctype::ctype(__c_locale, const mask* __table, bool __del, size_t __refs) diff --git a/gnu/lib/gcc40/libstdc++/ctype_noninline.h.patch b/gnu/lib/gcc40/libstdc++/ctype_noninline.h.patch index 07fda00198..4ab1aa3891 100644 --- a/gnu/lib/gcc40/libstdc++/ctype_noninline.h.patch +++ b/gnu/lib/gcc40/libstdc++/ctype_noninline.h.patch @@ -1,4 +1,4 @@ -$DragonFly: src/gnu/lib/gcc40/libstdc++/Attic/ctype_noninline.h.patch,v 1.1 2005/06/05 22:43:21 corecode Exp $ +$DragonFly: src/gnu/lib/gcc40/libstdc++/Attic/ctype_noninline.h.patch,v 1.2 2005/06/09 23:38:00 corecode Exp $ Index: ctype_noninline.h =================================================================== @@ -12,12 +12,12 @@ diff -u -r1.3 ctype_noninline.h // Information as gleaned from /usr/include/ctype.h - extern "C" const u_int8_t _C_ctype_[]; -+ extern "C" const __uint16_t __libc_ctype_[]; ++ extern "C" const __uint16_t __libc_C_ctype_[]; const ctype_base::mask* ctype::classic_table() throw() - { return _C_ctype_ + 1; } -+ { return __libc_ctype_ + 1; } ++ { return __libc_C_ctype_ + 1; } ctype::ctype(__c_locale, const mask* __table, bool __del, size_t __refs) -- 2.41.0