Compiler: Fix undefined symbol: pow10 (#615)

* Compiler: Fix undefined symbol: pow10

* Add version check

* Remove deprecated pow10
This commit is contained in:
Vitaly Karpenko 2018-10-14 18:44:59 +03:00 committed by Vincent Herbet
parent 75cf5f55f9
commit 77eb33d5f2

View File

@ -600,13 +600,6 @@ static int htoi(cell *val,const unsigned char *curptr)
return (int)(ptr-curptr);
}
#if defined __APPLE__
static double pow10(double d)
{
return pow(10, d);
}
#endif
/* ftoi
*
* Attempts to interpret a numeric symbol as a rational number, either as
@ -682,11 +675,7 @@ static int ftoi(cell *val,const unsigned char *curptr)
exp=(exp*10)+(*ptr-'0');
ptr++;
} /* while */
#if defined __GNUC__
fmult=pow10(exp*sign);
#else
fmult=pow(10,exp*sign);
#endif
fnum *= fmult;
dnum *= (unsigned long)(fmult+0.5);
} /* if */