diff options
author | tijl <tijl@FreeBSD.org> | 2015-06-25 13:01:10 +0000 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2015-06-25 13:01:10 +0000 |
commit | 95fcbd85e830ba474dede020a3b792ae31138e2b (patch) | |
tree | a7fbd9fa2cff8aeacad80e2cea7c6a1651531374 /lib/msun/ld80/k_expl.h | |
parent | 91e9d26e116c48b2b63d0153154f28797795a07f (diff) | |
download | FreeBSD-src-95fcbd85e830ba474dede020a3b792ae31138e2b.zip FreeBSD-src-95fcbd85e830ba474dede020a3b792ae31138e2b.tar.gz |
MFC r271651, r271719, r272138, r272457, r272845, r275476, r275518, r275614,
r275819, r276176, r278154, r278160, r278339, r279127, r279240, r279491,
r279493, r279856, r283032, r284423, r284426, r284427, r284428
Merge changes to libm from the past 9 months. This includes improvements
to the Bessel functions and adds the C99 function lgammal.
Diffstat (limited to 'lib/msun/ld80/k_expl.h')
-rw-r--r-- | lib/msun/ld80/k_expl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/ld80/k_expl.h b/lib/msun/ld80/k_expl.h index ebfb9a8..9b081fa 100644 --- a/lib/msun/ld80/k_expl.h +++ b/lib/msun/ld80/k_expl.h @@ -299,7 +299,7 @@ __ldexp_cexpl(long double complex z, int expt) scale2 = 1; SET_LDBL_EXPSIGN(scale1, BIAS + expt - half_expt); - return (cpackl(cos(y) * exp_x * scale1 * scale2, + return (CMPLXL(cos(y) * exp_x * scale1 * scale2, sinl(y) * exp_x * scale1 * scale2)); } #endif /* _COMPLEX_H */ |