Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdlib/btowc.c')
-rw-r--r--newlib/libc/stdlib/btowc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/btowc.c b/newlib/libc/stdlib/btowc.c
index 847d7ce1a..f5ef4624a 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;