From 272a8dbe20d0d09c58a5df3bfb72638dcae97b45 Mon Sep 17 00:00:00 2001 From: mike Date: Thu, 22 May 2003 17:07:57 +0000 Subject: Fix two misuses of __BSD_VISIBLE. Submitted by: bde Approved by: re --- lib/msun/src/math.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/msun') diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index 0c69f8f..c8e426d 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -249,7 +249,7 @@ double log1p(double) __pure2; * Reentrant version of gamma & lgamma; passes signgam back by reference * as the second argument; user must allocate space for signgam. */ -#ifdef __BSD_VISIBLE +#if __BSD_VISIBLE double gamma_r(double, int *); double lgamma_r(double, int *); #endif /* __BSD_VISIBLE */ @@ -330,7 +330,7 @@ float log1pf(float) __pure2; * signgam back by reference as the second argument; user must * allocate space for signgam. */ -#ifdef __BSD_VISIBLE +#if __BSD_VISIBLE float gammaf_r(float, int *); float lgammaf_r(float, int *); #endif /* __BSD_VISIBLE */ -- cgit v1.1