From d3fc724759ef08a8032e76e14f8cd96bfb837e17 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 17 Mar 2012 00:02:36 -0400 Subject: [PATCH] one more fenv availability issue: lround --- src/math/lround.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/math/lround.c b/src/math/lround.c index 04a5e178..f62c8d40 100644 --- a/src/math/lround.c +++ b/src/math/lround.c @@ -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; } } -- 2.20.1