diff options
Diffstat (limited to 'stdlib/strtol.c')
-rw-r--r-- | stdlib/strtol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/strtol.c b/stdlib/strtol.c index e4e7b4e5a6..c467173838 100644 --- a/stdlib/strtol.c +++ b/stdlib/strtol.c @@ -263,7 +263,7 @@ INTERNAL (strtol) (nptr, endptr, base, group LOCALE_PARAM) { /* Figure out the thousands separator character. */ # if defined _LIBC || defined _HAVE_BTOWC - thousands = btowc (*_NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP)); + thousands = __btowc (*_NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP)); if (thousands == WEOF) thousands = L'\0'; # endif |