diff options
Diffstat (limited to 'math/w_asin.c')
-rw-r--r-- | math/w_asin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_asin.c b/math/w_asin.c index 9bf9374ec8..2b744467cd 100644 --- a/math/w_asin.c +++ b/math/w_asin.c @@ -29,7 +29,7 @@ __asin (double x) && _LIB_VERSION != _IEEE_) { /* asin(|x|>1) */ - feraiseexcept (FE_INVALID); + __feraiseexcept (FE_INVALID); return __kernel_standard (x, x, 2); } |