2 /* @(#)w_acos.c 1.3 95/01/18 */
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
7 * Developed at SunSoft, a Sun Microsystems, Inc. business.
8 * Permission to use, copy, modify, and distribute this
9 * software is freely granted, provided that this notice
11 * ====================================================
22 double acos(double x
) /* wrapper acos */
24 double acos(x
) /* wrapper acos */
29 return __ieee754_acos(x
);
32 z
= __ieee754_acos(x
);
33 if(_LIB_VERSION
== _IEEE_
|| isnan(x
)) return z
;
35 return __kernel_standard(x
,x
,1); /* acos(|x|>1) */