summaryrefslogtreecommitdiff
path: root/src/complex/csin.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-30 13:38:04 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-30 13:38:04 -0500
commitb25685d5dc26370ecae112f805b4141c4efdeea4 (patch)
tree1ffce549af46ae52d6b760733ba6e5b62ede4998 /src/complex/csin.c
parentf4f929b02eaed8ef8b798780ee5640bdd6809867 (diff)
update safety checks
Diffstat (limited to 'src/complex/csin.c')
-rw-r--r--src/complex/csin.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/complex/csin.c b/src/complex/csin.c
index 31aab568..556b6b62 100644
--- a/src/complex/csin.c
+++ b/src/complex/csin.c
@@ -7,6 +7,7 @@
TYPE complex TGFN(csin)(TYPE complex z)
{
+ SIGNAL_SAFE(0);
return TGCMPLX(0.0, -TGFN(csinh)(I * z));
}