Deleted Added
sdiff udiff text old ( 97413 ) new ( 176451 )
full compact
1/* @(#)s_asinh.c 5.1 93/09/24 */
2/*
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 *
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
9 * is preserved.
10 * ====================================================
11 */
12
13#include <sys/cdefs.h>
14__FBSDID("$FreeBSD: head/lib/msun/src/s_asinh.c 176451 2008-02-22 02:30:36Z das $");
15
16/* asinh(x)
17 * Method :
18 * Based on
19 * asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
20 * we have
21 * asinh(x) := x if 1+x*x=1,
22 * := sign(x)*(log(x)+ln2)) for large |x|, else

--- 34 unchanged lines hidden ---