diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-19 07:34:29 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-19 07:34:29 +0000 |
commit | 2a4bf7730d252fcadf5e50c3a9c740b5c94acfe3 (patch) | |
tree | 9a7597178791661d866752380767b1406cb2c96a /perlapi.c | |
parent | 17cab1b848e4960c008b73548ee8e62a9e9735ec (diff) | |
parent | 41d6edb2c1acac32a0296d594f0943752d23f077 (diff) | |
download | perl-2a4bf7730d252fcadf5e50c3a9c740b5c94acfe3.tar.gz |
integrate cfgperl contents into mainline
p4raw-id: //depot/perl@5822
Diffstat (limited to 'perlapi.c')
-rw-r--r-- | perlapi.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1963,6 +1963,13 @@ Perl_newSViv(pTHXo_ IV i) return ((CPerlObj*)pPerl)->Perl_newSViv(i); } +#undef Perl_newSVuv +SV* +Perl_newSVuv(pTHXo_ UV u) +{ + return ((CPerlObj*)pPerl)->Perl_newSVuv(u); +} + #undef Perl_newSVnv SV* Perl_newSVnv(pTHXo_ NV n) |