summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-03-01 05:35:53 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-03-01 05:35:53 +0000
commit73b309ea0370472c1b800c9275b2e0d497af6cb3 (patch)
tree1f210382d233cea97ff04f27f78b76cde48e4735 /sv.c
parent8dd45d34530338e4b3b5971eaa45b6974375715b (diff)
downloadperl-73b309ea0370472c1b800c9275b2e0d497af6cb3.tar.gz
Couple of math functions need to be Perl_ so that
they are correctly long double, especially the frexp() in sv_vcatpvfn() (spotted by Spider Boardman). p4raw-id: //depot/cfgperl@5390
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 73c15e77a2..7bb1fdd23f 100644
--- a/sv.c
+++ b/sv.c
@@ -6207,7 +6207,7 @@ Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV
need = 0;
if (c != 'e' && c != 'E') {
i = PERL_INT_MIN;
- (void)frexp(nv, &i);
+ (void)Perl_frexp(nv, &i);
if (i == PERL_INT_MIN)
Perl_die(aTHX_ "panic: frexp");
if (i > 0)