e_lgammal.c 220 B

123456789101112131415
  1. #include "cdefs-compat.h"
  2. #include <openlibm_math.h>
  3. #include "math_private.h"
  4. DLLEXPORT long double
  5. lgammal(long double x)
  6. {
  7. #ifdef OPENLIBM_ONLY_THREAD_SAFE
  8. int signgam;
  9. #endif
  10. return (lgammal_r(x, &signgam));
  11. }