Better safe than clever.

Submitted by:	das
This commit is contained in:
des 2003-10-25 19:53:28 +00:00
parent 537239cace
commit a7b0d81550

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