diff options
author | mike <mike@FreeBSD.org> | 2003-05-22 17:07:57 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2003-05-22 17:07:57 +0000 |
commit | 272a8dbe20d0d09c58a5df3bfb72638dcae97b45 (patch) | |
tree | b9e898779fabbf9709e1860e2540a0be814e7ca7 /lib/msun | |
parent | 99b5c5ca725b6585db78f575894c74d7287f3a80 (diff) | |
download | FreeBSD-src-272a8dbe20d0d09c58a5df3bfb72638dcae97b45.zip FreeBSD-src-272a8dbe20d0d09c58a5df3bfb72638dcae97b45.tar.gz |
Fix two misuses of __BSD_VISIBLE.
Submitted by: bde
Approved by: re
Diffstat (limited to 'lib/msun')
-rw-r--r-- | lib/msun/src/math.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 */ |