summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@covalent.net>2001-02-18 06:49:33 -0800
committerJarkko Hietaniemi <jhi@iki.fi>2001-02-19 00:23:41 +0000
commit4030fe4ad6ddcf55e0341ef163ebb1419014d565 (patch)
treeba61b1f08997a95e92a0dcd5a3977822918cc676 /proto.h
parentb8c8cfe2143ccc131c4ba2522f7e9a4aef4adb7a (diff)
downloadperl-4030fe4ad6ddcf55e0341ef163ebb1419014d565.tar.gz
[patch] add sv_setref_uv
Message-ID: <Pine.LNX.4.21.0102181448290.10021-100000@mako.covalent.net> p4raw-id: //depot/perl@8840
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/proto.h b/proto.h
index 10ef21ac77..a33e8b7566 100644
--- a/proto.h
+++ b/proto.h
@@ -779,6 +779,7 @@ PERL_CALLCONV void Perl_sv_setpviv(pTHX_ SV* sv, IV num);
PERL_CALLCONV void Perl_sv_setuv(pTHX_ SV* sv, UV num);
PERL_CALLCONV void Perl_sv_setnv(pTHX_ SV* sv, NV num);
PERL_CALLCONV SV* Perl_sv_setref_iv(pTHX_ SV* rv, const char* classname, IV iv);
+PERL_CALLCONV SV* Perl_sv_setref_uv(pTHX_ SV* rv, const char* classname, UV uv);
PERL_CALLCONV SV* Perl_sv_setref_nv(pTHX_ SV* rv, const char* classname, NV nv);
PERL_CALLCONV SV* Perl_sv_setref_pv(pTHX_ SV* rv, const char* classname, void* pv);
PERL_CALLCONV SV* Perl_sv_setref_pvn(pTHX_ SV* rv, const char* classname, char* pv, STRLEN n);