summaryrefslogtreecommitdiff
path: root/inline.h
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 /inline.h
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 'inline.h')
-rw-r--r--inline.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/inline.h b/inline.h
index 5f4fc01bdf..a55f19f8b2 100644
--- a/inline.h
+++ b/inline.h
@@ -1843,9 +1843,9 @@ Perl_utf8n_to_uvchr_msgs(const U8 *s,
}
PERL_STATIC_INLINE UV
-Perl__utf8_to_uvchr_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
+Perl_utf8_to_uvchr_buf_helper(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
{
- PERL_ARGS_ASSERT__UTF8_TO_UVCHR_BUF;
+ PERL_ARGS_ASSERT_UTF8_TO_UVCHR_BUF_HELPER;
assert(s < send);