Fix two misuses of __BSD_VISIBLE.

Submitted by:	bde
Approved by:	re
This commit is contained in:
Mike Barcroft 2003-05-22 17:07:57 +00:00
parent b1aff8bff1
commit 6f9622a926
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115230
2 changed files with 3 additions and 3 deletions

View file

@ -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 */

View file

@ -100,7 +100,7 @@ typedef __uid_t uid_t;
#include <sys/time.h>
#endif
#ifndef __BSD_VISIBLE
#if !__BSD_VISIBLE
#include <sys/_timespec.h>
#endif