summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-02-26 11:26:09 -0700
committerKarl Williamson <public@khwilliamson.com>2013-08-29 09:55:57 -0600
commita27992ccf5d1a0c50667fb21ba8ca973f50a7508 (patch)
treed46f3decc3740faf72438cb40bae33720f66defc /proto.h
parent4f83cdcd5c1f4154a1ecc18f39f9e5c3f21bc4b3 (diff)
downloadperl-a27992ccf5d1a0c50667fb21ba8ca973f50a7508.tar.gz
Convert uvuni_to_utf8() to function
Code should almost never be dealing with non-native code points This is in preparation for later deprecation when our CPAN modules have been converted away from using it.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index 40a4cc0c98..5356ddb9ff 100644
--- a/proto.h
+++ b/proto.h
@@ -4777,8 +4777,8 @@ PERL_CALLCONV U8* Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
#define PERL_ARGS_ASSERT_UVCHR_TO_UTF8_FLAGS \
assert(d)
-/* PERL_CALLCONV U8* Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
- __attribute__nonnull__(pTHX_1); */
+PERL_CALLCONV U8* Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
+ __attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_UVUNI_TO_UTF8 \
assert(d)