w_acos.c 831 Bytes
Newer Older
Tom Tromey committed
1

2
/* @(#)w_acos.c 1.3 95/01/18 */
Tom Tromey committed
3 4 5 6
/*
 * ====================================================
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 *
7
 * Developed at SunSoft, a Sun Microsystems, Inc. business.
Tom Tromey committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
 * Permission to use, copy, modify, and distribute this
 * software is freely granted, provided that this notice 
 * is preserved.
 * ====================================================
 */

/*
 * wrap_acos(x)
 */

#include "fdlibm.h"


#ifdef __STDC__
	double acos(double x)		/* wrapper acos */
#else
	double acos(x)			/* wrapper acos */
	double x;
#endif
{
#ifdef _IEEE_LIBM
	return __ieee754_acos(x);
#else
	double z;
32
	z = __ieee754_acos(x);
Tom Tromey committed
33
	if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
34 35
	if(fabs(x)>1.0) {
	        return __kernel_standard(x,x,1); /* acos(|x|>1) */
Tom Tromey committed
36 37 38 39
	} else
	    return z;
#endif
}