summaryrefslogtreecommitdiff
path: root/src/math/frexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/frexp.c')
-rw-r--r--src/math/frexp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/frexp.c b/src/math/frexp.c
index e60a5e04..52d0c413 100644
--- a/src/math/frexp.c
+++ b/src/math/frexp.c
@@ -9,6 +9,7 @@
TYPE TGFN(frexp)(TYPE value, int *exp)
{
+ SIGNAL_SAFE(0);
switch (fpclassify(value)) {
case FP_ZERO: *exp = 0; return value;
case FP_INFINITE: *exp = /* unspecified */0; return value;