diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-29 15:07:42 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-29 15:07:42 +0000 |
commit | 205c02c281b9644211954268839d5b6d0c3f15fd (patch) | |
tree | 8820f9240c27b29506141ce3b74b9f8a92269252 /sv.c | |
parent | 5abc721d638ff51bc38a83a3846d0b034cac3761 (diff) | |
download | perl-205c02c281b9644211954268839d5b6d0c3f15fd.tar.gz |
sv_utf8_upgrade declares itself to be a mathom, so off it goes.
Remove duplicate declaration of Perl_sv_2uv
p4raw-id: //depot/perl@25880
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -2362,16 +2362,6 @@ Perl_sv_2iv_flags(pTHX_ register SV *sv, I32 flags) return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv); } -/* sv_2uv() is now a macro using Perl_sv_2uv_flags(); - * this function provided for binary compatibility only - */ - -UV -Perl_sv_2uv(pTHX_ register SV *sv) -{ - return sv_2uv_flags(sv, SV_GMAGIC); -} - /* =for apidoc sv_2uv_flags @@ -3444,17 +3434,6 @@ Perl_sv_2bool(pTHX_ register SV *sv) } } -/* sv_utf8_upgrade() is now a macro using sv_utf8_upgrade_flags(); - * this function provided for binary compatibility only - */ - - -STRLEN -Perl_sv_utf8_upgrade(pTHX_ register SV *sv) -{ - return sv_utf8_upgrade_flags(sv, SV_GMAGIC); -} - /* =for apidoc sv_utf8_upgrade |