diff options
Diffstat (limited to 'math/bits')
-rw-r--r-- | math/bits/mathcalls.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h index e1c0521..951a3d0 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -115,9 +115,11 @@ __MATHCALL (log10,, (_Mdouble_ __x)); __MATHCALL (modf,, (_Mdouble_ __x, _Mdouble_ *__iptr)) __nonnull ((2)); _Mdouble_END_NAMESPACE -#ifdef __USE_GNU -/* A function missing in all standards: compute exponent to base ten. */ +#if __GLIBC_USE (IEC_60559_FUNCS_EXT) +/* Compute exponent to base ten. */ __MATHCALL (exp10,, (_Mdouble_ __x)); +#endif +#ifdef __USE_GNU /* Another name occasionally used. */ __MATHCALL (pow10,, (_Mdouble_ __x)); #endif |