diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-03-03 21:19:47 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-03-03 21:19:47 -0500 |
commit | 8c7cdf31bd692e1697a5a01664717c3b9dbffc59 (patch) | |
tree | 948e7a2d189f5aba85e0f8be3386424290fdb231 /src/complex/casin.c | |
parent | 6eb245579dfdefa0da7f59909bf2e3f8b277c426 (diff) |
fill out special cases outlined in C18 annex G
Diffstat (limited to 'src/complex/casin.c')
-rw-r--r-- | src/complex/casin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/complex/casin.c b/src/complex/casin.c index 45084641..e26cc76a 100644 --- a/src/complex/casin.c +++ b/src/complex/casin.c @@ -5,7 +5,7 @@ TYPE complex TGFN(casin)(TYPE complex z) { - return z; + return TGCMPLX(0.0, -TGFN(casinh)(I * z)); } /*d |