mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Better safe than clever.
Submitted by: das
This commit is contained in:
parent
f3075be88a
commit
2a063d30f6
1 changed files with 5 additions and 2 deletions
|
|
@ -35,6 +35,9 @@
|
|||
long double
|
||||
fabsl(long double x)
|
||||
{
|
||||
((union IEEEl2bits *)&x)->bits.sign = 0;
|
||||
return (x);
|
||||
union IEEEl2bits u;
|
||||
|
||||
u.e = x;
|
||||
u.bits.sign = 0;
|
||||
return (u.e);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue