2 /* @(#)z_acosf.c 1.0 98/08/13 */
3 /******************************************************************
7 * x - floating point value
13 * This routine returns the arccosine of x.
15 *****************************************************************/
23 return (asinef (x
, 1));
26 #ifdef _DOUBLE_IS_32BITS
27 double acos (double x
)
29 return (double) asinef ((float) x
, 1);
32 #endif /* defined(_DOUBLE_IS_32BITS) */