summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-09-10 11:12:59 -0600
committerKarl Williamson <khw@cpan.org>2019-09-15 10:39:56 -0600
commit9a9a6c9859e31a91d4dd61190df208c24f5cbdc4 (patch)
tree4b281b0761afa25eb7a930d7533bf80231cb9f5b /utf8.c
parent1376b35c0aca7ec6b61283ddea3aa1c58bcb88de (diff)
downloadperl-9a9a6c9859e31a91d4dd61190df208c24f5cbdc4.tar.gz
Change name of _utf8_to_uvchr_buf()
A function name with a leading underscore is not legal in C. Instead add a suffix to differentiate this name from an otherwise identical one.
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 9f5f59e00e..0d88d52632 100644
--- a/utf8.c
+++ b/utf8.c
@@ -2274,7 +2274,7 @@ Perl_utf8_to_uvchr_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
{
PERL_ARGS_ASSERT_UTF8_TO_UVCHR_BUF;
- return _utf8_to_uvchr_buf(s, send, retlen);
+ return utf8_to_uvchr_buf_helper(s, send, retlen);
}
/* This is marked as deprecated