diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2009-09-27 12:21:16 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2009-09-27 12:21:16 +0000 |
commit | a58d484bcfa8a8581fda771e2f60aa0307534590 (patch) | |
tree | e41c24a615f73ed496d51f89d71c44df612ccf08 /newlib/libc/stdlib/mbtowc_r.c | |
parent | 7677a6b206265ca4dde7b93a04b15f602fcac0af (diff) | |
download | cygnal-a58d484bcfa8a8581fda771e2f60aa0307534590.tar.gz cygnal-a58d484bcfa8a8581fda771e2f60aa0307534590.tar.bz2 cygnal-a58d484bcfa8a8581fda771e2f60aa0307534590.zip |
* libc/locale/locale.c (lc_ctype_charset): Set to "UTF-8" on Cygwin.
(lc_message_charset): Ditto.
(loadlocale): Set charset of the "C" locale to "UTF-8" on Cygwin.
* libc/stdlib/mbtowc_r.c (__mbtowc): Default to __utf8_mbtowc on
Cygwin.
* libc/stdlib/wctomb_r.c (__wctomb): Default to __utf8_wctomb on
Cygwin.
Diffstat (limited to 'newlib/libc/stdlib/mbtowc_r.c')
-rw-r--r-- | newlib/libc/stdlib/mbtowc_r.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/newlib/libc/stdlib/mbtowc_r.c b/newlib/libc/stdlib/mbtowc_r.c index 4e80c51b1..a791692be 100644 --- a/newlib/libc/stdlib/mbtowc_r.c +++ b/newlib/libc/stdlib/mbtowc_r.c @@ -9,7 +9,11 @@ int (*__mbtowc) (struct _reent *, wchar_t *, const char *, size_t, const char *, mbstate_t *) +#ifdef __CYGWIN__ + = __utf8_mbtowc; +#else = __ascii_mbtowc; +#endif int _DEFUN (_mbtowc_r, (r, pwc, s, n, state), |