This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: 5.004_04 vec() fails with 32-bit values
[perl5.git] / pod / perlguts.pod
index 4806815..1aea1d8 100644 (file)
@@ -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)