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