mirror of
https://github.com/LIV2/WinUAE.git
synced 2025-12-06 00:12:52 +00:00
abs -> fabs
This commit is contained in:
parent
9461b4a7c2
commit
5d3bf0bbbf
@ -886,7 +886,7 @@ static void fp_log2(fpdata *a, fpdata *b)
|
||||
static void fp_abs(fpdata *a, fpdata *b, int prec)
|
||||
{
|
||||
fp_set_prec(prec);
|
||||
a->fp = abs(b->fp);
|
||||
a->fp = fabsl(b->fp);
|
||||
fp_reset_prec(a);
|
||||
}
|
||||
static void fp_cosh(fpdata *a, fpdata *b)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user