* Compiler: Fix undefined symbol: pow10
* Add version check
* Remove deprecated pow10
(cherry picked from commit 77eb33d5f2
)
This commit is contained in:
parent
6cecb34e29
commit
691ae9f8d4
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue
Block a user