aboutsummaryrefslogtreecommitdiff
path: root/math/w_log10.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_log10.c')
-rw-r--r--math/w_log10.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_log10.c b/math/w_log10.c
index 472d2a1..a0a1843 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) */
}
}