summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2021-08-22 18:58:17 +0100
committerPaul Evans <leonerd@leonerd.org.uk>2021-08-25 19:57:49 +0100
commit7c2d42a7fc929320cd3f6fa97291ee8853fab689 (patch)
tree20fa4539c9719dd85650e52ce98d07e8574f13ab /proto.h
parent3020db6f5b9cdb6ab6e335633c1e7db8557c4ee9 (diff)
downloadperl-7c2d42a7fc929320cd3f6fa97291ee8853fab689.tar.gz
Add sv_setrv_noinc()
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/proto.h b/proto.h
index b466a8d587..3c10bab6a7 100644
--- a/proto.h
+++ b/proto.h
@@ -3814,6 +3814,9 @@ PERL_CALLCONV SV* Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const class
PERL_CALLCONV SV* Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv);
#define PERL_ARGS_ASSERT_SV_SETREF_UV \
assert(rv)
+PERL_CALLCONV void Perl_sv_setrv_noinc(pTHX_ SV *const sv, SV *const ref);
+#define PERL_ARGS_ASSERT_SV_SETRV_NOINC \
+ assert(sv); assert(ref)
#ifndef NO_MATHOMS
PERL_CALLCONV void Perl_sv_setsv(pTHX_ SV *dsv, SV *ssv);
#define PERL_ARGS_ASSERT_SV_SETSV \