diff options
Diffstat (limited to 'newlib/libc/stdlib/btowc.c')
-rw-r--r-- | newlib/libc/stdlib/btowc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/btowc.c b/newlib/libc/stdlib/btowc.c index 847d7ce..f5ef462 100644 --- a/newlib/libc/stdlib/btowc.c +++ b/newlib/libc/stdlib/btowc.c @@ -3,6 +3,7 @@ #include <stdio.h> #include <reent.h> #include <string.h> +#include "local.h" wint_t btowc (int c) @@ -19,7 +20,7 @@ btowc (int c) _REENT_CHECK_MISC(_REENT); - retval = _mbtowc_r (_REENT, &pwc, &b, 1, &mbs); + retval = __mbtowc (_REENT, &pwc, &b, 1, __locale_charset (), &mbs); if (c == EOF || retval != 1) return WEOF; |