1 /* w_expl.c -- long double version of w_exp.c.
2 * Conversion to long double by Ulrich Drepper,
3 * Cygnus Support, drepper@cygnus.com.
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
14 * ====================================================
17 #if defined(LIBM_SCCS) && !defined(lint)
18 static char rcsid
[] = "$NetBSD: $";
26 #include "math_private.h"
29 static const long double
33 o_threshold
= 1.135652340629414394949193107797076489134e4
,
34 /* 0x400C, 0xB17217F7, 0xD1CF79AC */
35 u_threshold
= -1.140019167866942050398521670162263001513e4
;
36 /* 0x400C, 0xB220C447, 0x69C201E8 */
39 long double __expl(long double x
) /* wrapper exp */
41 long double __expl(x
) /* wrapper exp */
46 return __ieee754_expl(x
);
49 z
= __ieee754_expl(x
);
50 if(_LIB_VERSION
== _IEEE_
) return z
;
53 return __kernel_standard(x
,x
,206); /* exp overflow */
54 else if(x
<u_threshold
)
55 return __kernel_standard(x
,x
,207); /* exp underflow */
60 weak_alias (__expl
, expl
)