diff options
Diffstat (limited to 'math/w_log10.c')
-rw-r--r-- | math/w_log10.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_log10.c b/math/w_log10.c index 472d2a146d..a0a1843ba6 100644 --- a/math/w_log10.c +++ b/math/w_log10.c @@ -29,12 +29,12 @@ __log10 (double x) { if (x == 0.0) { - feraiseexcept (FE_DIVBYZERO); + __feraiseexcept (FE_DIVBYZERO); return __kernel_standard (x, x, 18); /* log10(0) */ } else { - feraiseexcept (FE_INVALID); + __feraiseexcept (FE_INVALID); return __kernel_standard (x, x, 19); /* log10(x<0) */ } } |