summaryrefslogtreecommitdiff
path: root/src/math/remquo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/remquo.c')
-rw-r--r--src/math/remquo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/remquo.c b/src/math/remquo.c
index 1a1d852c..7c3eadfe 100644
--- a/src/math/remquo.c
+++ b/src/math/remquo.c
@@ -6,6 +6,7 @@
TYPE TGFN(remquo)(TYPE x, TYPE y, int *quo)
{
+ SIGNAL_SAFE(0);
(void)quo;
return x - y;
}