2 /* @(#)z_acosf.c 1.0 98/08/13 */
3 /******************************************************************
7 * x - floating point value
13 * This routine returns the arccosine of x.
15 *****************************************************************/
21 _DEFUN (acosf
, (float),
24 return (asinef (x
, 1));
27 #ifdef _DOUBLE_IS_32BITS
28 double acos (double x
)
30 return (double) asinef ((float) x
, 1);
33 #endif /* defined(_DOUBLE_IS_32BITS) */