diff options
Diffstat (limited to 'math/w_log.c')
-rw-r--r-- | math/w_log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_log.c b/math/w_log.c index 8c90052094..4383e500b3 100644 --- a/math/w_log.c +++ b/math/w_log.c @@ -29,12 +29,12 @@ __log (double x) { if (x == 0.0) { - feraiseexcept (FE_DIVBYZERO); + __feraiseexcept (FE_DIVBYZERO); return __kernel_standard (x, x, 16); /* log(0) */ } else { - feraiseexcept (FE_INVALID); + __feraiseexcept (FE_INVALID); return __kernel_standard (x, x, 17); /* log(x<0) */ } } |