Use powf instead of pow.

This commit is contained in:
Dale Weiler 2014-03-17 09:43:17 -04:00
parent b21e967581
commit 763e85b3ae

2
exec.c
View file

@ -827,7 +827,7 @@ static int qc_pow(qc_program_t *prog) {
CheckArgs(2);
base = GetArg(0);
exp = GetArg(1);
out._float = pow(base->_float, exp->_float);
out._float = powf(base->_float, exp->_float);
Return(out);
return 0;
}