diff options
Diffstat (limited to 'lib/msun/src')
-rw-r--r-- | lib/msun/src/math.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index 521ee3f..601d0ce 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -249,7 +249,6 @@ double rint(double); double j0(double); double j1(double); double jn(int, double); -double scalb(double, double); double y0(double); double y1(double); double yn(int, double); @@ -257,6 +256,10 @@ double yn(int, double); #if __XSI_VISIBLE <= 500 || __BSD_VISIBLE double gamma(double); #endif + +#if __XSI_VISIBLE <= 600 || __BSD_VISIBLE +double scalb(double, double); +#endif #endif /* __BSD_VISIBLE || __XSI_VISIBLE */ #if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 |