From: Jarkko Hietaniemi Date: Tue, 6 Jul 1999 16:52:20 +0000 (+0000) Subject: There ain't Perl_atonv(). X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ac26f1096f894dcdd99ad9e7c5430803f4e3b145;p=p5sagit%2Fp5-mst-13.2.git There ain't Perl_atonv(). p4raw-id: //depot/cfgperl@3618 --- diff --git a/ext/ByteLoader/bytecode.h b/ext/ByteLoader/bytecode.h index 04a05e4..1dda7e6 100644 --- a/ext/ByteLoader/bytecode.h +++ b/ext/ByteLoader/bytecode.h @@ -73,7 +73,7 @@ typedef IV IV64; #define BGET_NV(arg) STMT_START { \ char *str; \ BGET_strconst(str); \ - arg = Perl_atonv(str); \ + arg = Atof(str); \ } STMT_END #define BGET_objindex(arg, type) STMT_START { \