Support binutils 2.20.
[glibc/nacl-glibc.git] / math / w_sinhl.c
blob19eb774d64e2024da83703f0101baf506df9b56a
1 /* w_sinhl.c -- long double version of w_sinh.c.
2 * Conversion to long double by Ulrich Drepper,
3 * Cygnus Support, drepper@cygnus.com.
4 */
6 /*
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
13 * is preserved.
14 * ====================================================
17 #if defined(LIBM_SCCS) && !defined(lint)
18 static char rcsid[] = "$NetBSD: $";
19 #endif
22 * wrapper sinhl(x)
25 #include <math.h>
26 #include "math_private.h"
28 #ifdef __STDC__
29 long double __sinhl(long double x) /* wrapper sinhl */
30 #else
31 long double __sinhl(x) /* wrapper sinhl */
32 long double x;
33 #endif
35 #ifdef _IEEE_LIBM
36 return __ieee754_sinhl(x);
37 #else
38 long double z;
39 z = __ieee754_sinhl(x);
40 if(_LIB_VERSION == _IEEE_) return z;
41 if(!__finitel(z)&&__finitel(x)) {
42 return __kernel_standard(x,x,225); /* sinh overflow */
43 } else
44 return z;
45 #endif
47 weak_alias (__sinhl, sinhl)