diff options
Diffstat (limited to 'src/math/fmax.c')
| -rw-r--r-- | src/math/fmax.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/fmax.c b/src/math/fmax.c index e4bf1d11..a3d7228f 100644 --- a/src/math/fmax.c +++ b/src/math/fmax.c @@ -6,6 +6,7 @@ TYPE TGFN(fmax)(TYPE x, TYPE y) { + SIGNAL_SAFE(0); if (isnan(x) && !isnan(y)) { return y; } else if (!isnan(x) && isnan(y)) { |
