Add sysdeps/ieee754/soft-fp.
[glibc.git] / math / w_expl_compat.c
blobdda930405ec0c2a078f10cbbf7f6dcf1f56da09e
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.
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 expl(x)
25 #include <math.h>
26 #include <math_private.h>
27 #include <math-svid-compat.h>
28 #include <libm-alias-ldouble.h>
30 #if LIBM_SVID_COMPAT
31 long double __expl(long double x) /* wrapper exp */
33 # ifdef _IEEE_LIBM
34 return __ieee754_expl(x);
35 # else
36 long double z = __ieee754_expl (x);
37 if (__glibc_unlikely (!isfinite (z) || z == 0)
38 && isfinite (x) && _LIB_VERSION != _IEEE_)
39 return __kernel_standard_l (x, x, 206 + !!signbit (x));
41 return z;
42 # endif
44 hidden_def (__expl)
45 libm_alias_ldouble (__exp, exp)
46 #endif