From a096045fe0e2f79beef281bc6cdc4dc33e547106 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Thu, 20 Aug 2015 18:59:20 +0200 Subject: [PATCH] : Fix visibility of scalb(), which was removed from Issue 7. --- contrib/openbsd_libm/include/global/math.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contrib/openbsd_libm/include/global/math.h b/contrib/openbsd_libm/include/global/math.h index 6dfb80a05e..eff6d57e0c 100644 --- a/contrib/openbsd_libm/include/global/math.h +++ b/contrib/openbsd_libm/include/global/math.h @@ -256,7 +256,6 @@ double fma(double, double, 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); @@ -266,6 +265,10 @@ double yn(int, double); double gamma(double); #endif /* __BSD_VISIBLE || __XSI_VISIBLE <= 500 */ +#if __BSD_VISIBLE || __XSI_VISIBLE <= 600 +double scalb(double, double); +#endif /* __BSD_VISIBLE || __XSI_VISIBLE <= 600 */ + /* * BSD math library entry points */ -- 2.41.0