summaryrefslogtreecommitdiff
path: root/src/math/atan.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/atan.c')
-rw-r--r--src/math/atan.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/atan.c b/src/math/atan.c
index 0bf07ec7..1a6f5aa4 100644
--- a/src/math/atan.c
+++ b/src/math/atan.c
@@ -9,6 +9,7 @@
TYPE TGFN(atan)(TYPE x)
{
+ SIGNAL_SAFE(0);
int MAXLOOPS = 10;
TYPE arctan = 0.0;
TYPE power = 1.0;