2005-07-16 00:30:23 +00:00
|
|
|
|
2006-03-10 21:46:48 +00:00
|
|
|
/* @(#)s_fabs.c 1.3 95/01/18 */
|
2005-07-16 00:30:23 +00:00
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* Developed at SunSoft, a Sun Microsystems, Inc. business.
|
2005-07-16 00:30:23 +00:00
|
|
|
* Permission to use, copy, modify, and distribute this
|
2006-03-10 21:46:48 +00:00
|
|
|
* software is freely granted, provided that this notice
|
2005-07-16 00:30:23 +00:00
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fabs(x) returns the absolute value of x.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fdlibm.h"
|
|
|
|
|
|
|
|
#ifndef _DOUBLE_IS_32BITS
|
|
|
|
|
|
|
|
#ifdef __STDC__
|
|
|
|
double fabs(double x)
|
|
|
|
#else
|
|
|
|
double fabs(x)
|
|
|
|
double x;
|
|
|
|
#endif
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
uint32_t hx;
|
|
|
|
|
|
|
|
GET_HIGH_WORD(hx,x);
|
|
|
|
SET_HIGH_WORD(x, hx & 0x7fffffff);
|
2005-07-16 00:30:23 +00:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _DOUBLE_IS_32BITS */
|