From 972c99ef729f678919facdb899e3fdcc36f10500 Mon Sep 17 00:00:00 2001 From: corinna Date: Thu, 9 Apr 2009 08:24:36 +0000 Subject: [PATCH] * libc/stdlib/local.h (__mbtowc): Declare extern. (__wctomb): Ditto. --- newlib/ChangeLog | 15 +++++++++++++++ newlib/libc/stdlib/local.h | 7 ++++--- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 0ac1c7313e..aba64d5cc0 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,18 @@ +2009-04-09 Corinna Vinschen + + * libc/stdlib/local.h (__mbtowc): Declare extern. + (__wctomb): Ditto. + +2009-04-09 Corinna Vinschen + + * libc/stdlib/mbctype.h (_iseucjp1): Like _iseucjp, but also + recognizes 0x8e and 0x8f lead bytes. + (_iseucjp2): Rename from _iseucjp. + * libc/stdlib/mbtowc_r.c (__eucjp_mbtowc): Convert JIS-X-0212 + triplebyte sequences as well. + * libc/stdlib/wctomb_r.c (__eucjp_wctomb): Convert to JIS-X-0212 + triplebyte sequences as well. + 2009-04-08 Ken Werner * configure.in: Add square brackets for the array aliasing conftest. diff --git a/newlib/libc/stdlib/local.h b/newlib/libc/stdlib/local.h index 459d98bdac..37856f8be1 100644 --- a/newlib/libc/stdlib/local.h +++ b/newlib/libc/stdlib/local.h @@ -11,7 +11,8 @@ char *__locale_charset (); #include #endif -int (*__wctomb) (struct _reent *, char *, wchar_t, const char *, mbstate_t *); +extern int (*__wctomb) (struct _reent *, char *, wchar_t, const char *, + mbstate_t *); int __ascii_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *); #ifdef _MB_CAPABLE @@ -29,8 +30,8 @@ int __big5_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *); #endif #endif -int (*__mbtowc) (struct _reent *, wchar_t *, const char *, size_t, - const char *, mbstate_t *); +extern int (*__mbtowc) (struct _reent *, wchar_t *, const char *, size_t, + const char *, mbstate_t *); int __ascii_mbtowc (struct _reent *, wchar_t *, const char *, size_t, const char *, mbstate_t *); #ifdef _MB_CAPABLE -- 2.11.0