diff options
Diffstat (limited to 'libm/include/math.h')
-rw-r--r-- | libm/include/math.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libm/include/math.h b/libm/include/math.h index 3eca140..1542374 100644 --- a/libm/include/math.h +++ b/libm/include/math.h @@ -459,14 +459,17 @@ long double tanhl(long double); long double tanl(long double); long double tgammal(long double); long double truncl(long double); - #endif /* __ISO_C_VISIBLE >= 1999 */ -#if defined(_GNU_SOURCE) +#if __BSD_VISIBLE +long double lgammal_r(long double, int *); +#endif + +#if defined(__USE_GNU) void sincos(double, double*, double*); void sincosf(float, float*, float*); void sincosl(long double, long double*, long double*); -#endif /* _GNU_SOURCE */ +#endif /* __USE_GNU */ #pragma GCC visibility pop __END_DECLS |