diff options
Diffstat (limited to 'math/w_ilogb.c')
-rw-r--r-- | math/w_ilogb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_ilogb.c b/math/w_ilogb.c index 9c0e264483..b2b3108a63 100644 --- a/math/w_ilogb.c +++ b/math/w_ilogb.c @@ -31,7 +31,7 @@ __ilogb (double x) || __builtin_expect (r == INT_MAX, 0)) { __set_errno (EDOM); - feraiseexcept (FE_INVALID); + __feraiseexcept (FE_INVALID); } return r; } |