Better safe than clever.

Submitted by:	das
This commit is contained in:
Dag-Erling Smørgrav 2003-10-25 19:53:28 +00:00
parent f3075be88a
commit 2a063d30f6

View file

@ -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);
}