diff options
Diffstat (limited to 'libm/include/math.h')
-rw-r--r-- | libm/include/math.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libm/include/math.h b/libm/include/math.h index 1fcc578..1542374 100644 --- a/libm/include/math.h +++ b/libm/include/math.h @@ -459,9 +459,12 @@ 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 __BSD_VISIBLE +long double lgammal_r(long double, int *); +#endif + #if defined(__USE_GNU) void sincos(double, double*, double*); void sincosf(float, float*, float*); |