diff options
Diffstat (limited to 'newlib/libc/stdlib/mbtowc.c')
-rw-r--r-- | newlib/libc/stdlib/mbtowc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/mbtowc.c b/newlib/libc/stdlib/mbtowc.c index 3c7f84b..7b8be77 100644 --- a/newlib/libc/stdlib/mbtowc.c +++ b/newlib/libc/stdlib/mbtowc.c @@ -70,7 +70,7 @@ _DEFUN (mbtowc, (pwc, s, n), _REENT_CHECK_MISC(reent); ps = &(_REENT_MBTOWC_STATE(reent)); - retval = __mbtowc (reent, pwc, s, n, __locale_charset (), ps); + retval = __MBTOWC (reent, pwc, s, n, ps); if (retval < 0) { |