summaryrefslogtreecommitdiff
path: root/stdlib/wctomb.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/wctomb.c')
-rw-r--r--stdlib/wctomb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/wctomb.c b/stdlib/wctomb.c
index f7143add82..75b6069af4 100644
--- a/stdlib/wctomb.c
+++ b/stdlib/wctomb.c
@@ -41,5 +41,5 @@ wctomb (char *s, wchar_t wchar)
if (s == NULL)
return 1;
- return wcrtomb (s, wchar, &__no_r_state);
+ return __wcrtomb (s, wchar, &__no_r_state);
}