one more fenv availability issue: lround
[musl] / src / math / lround.c
index 04a5e17..f62c8d4 100644 (file)
@@ -58,7 +58,9 @@ dtype fn(type x)
                x = roundit(x);
                return (dtype)x;
        } else {
+#ifdef FE_INVALID
                feraiseexcept(FE_INVALID);
+#endif
                return DTYPE_MAX;
        }
 }