summaryrefslogtreecommitdiff
path: root/src/math/hypot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/hypot.c')
-rw-r--r--src/math/hypot.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/hypot.c b/src/math/hypot.c
index 60f68384..9dbed0c0 100644
--- a/src/math/hypot.c
+++ b/src/math/hypot.c
@@ -6,6 +6,7 @@
TYPE TGFN(hypot)(TYPE x, TYPE y)
{
+ SIGNAL_SAFE(0);
if (fpclassify(y) == FP_ZERO) {
return fabs(x);
}