summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorM. J. T. Guy <mjtg@cus.cam.ac.uk>1998-01-15 11:53:06 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-02-06 16:02:57 +0000
commitdeb3007b1732b70253d84d2509424233377af1e9 (patch)
tree90539f4b3574e3e2e614c15b8504c4c2f2fd3ec8 /pod
parentcc6b73957505a73b130c87add7bf3d534f129041 (diff)
downloadperl-deb3007b1732b70253d84d2509424233377af1e9.tar.gz
Re: 5.004_04 vec() fails with 32-bit values
p4raw-id: //depot/perl@471
Diffstat (limited to 'pod')
-rw-r--r--pod/perlguts.pod3
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod
index 4806815de4..1aea1d8098 100644
--- a/pod/perlguts.pod
+++ b/pod/perlguts.pod
@@ -42,9 +42,10 @@ The five routines are:
SV* newSVpvf(const char*, ...);
SV* newSVsv(SV*);
-To change the value of an *already-existing* SV, there are six routines:
+To change the value of an *already-existing* SV, there are seven routines:
void sv_setiv(SV*, IV);
+ void sv_setuv(SV*, UV);
void sv_setnv(SV*, double);
void sv_setpv(SV*, char*);
void sv_setpvn(SV*, char*, int)