summaryrefslogtreecommitdiff
path: root/ext/ByteLoader
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-07-06 16:52:20 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-07-06 16:52:20 +0000
commitac26f1096f894dcdd99ad9e7c5430803f4e3b145 (patch)
tree9c1b90e9ded733ea131d506b334ce61a2a163817 /ext/ByteLoader
parent0ff7f81432a2a35270cb74562a99344074f7c368 (diff)
downloadperl-ac26f1096f894dcdd99ad9e7c5430803f4e3b145.tar.gz
There ain't Perl_atonv().
p4raw-id: //depot/cfgperl@3618
Diffstat (limited to 'ext/ByteLoader')
-rw-r--r--ext/ByteLoader/bytecode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ByteLoader/bytecode.h b/ext/ByteLoader/bytecode.h
index 04a05e4251..1dda7e6af1 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 { \