e_lgamma.c 643 B

1234567891011121314151617181920212223242526
  1. /*
  2. * ====================================================
  3. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  4. *
  5. * Developed at SunPro, a Sun Microsystems, Inc. business.
  6. * Permission to use, copy, modify, and distribute this
  7. * software is freely granted, provided that this notice
  8. * is preserved.
  9. * ====================================================
  10. *
  11. */
  12. /* __ieee754_lgamma(x)
  13. * Return the logarithm of the Gamma function of x.
  14. *
  15. * Method: call __ieee754_lgamma_r
  16. */
  17. #include <math.h>
  18. #include "math_private.h"
  19. double attribute_hidden __ieee754_lgamma(double x)
  20. {
  21. return __ieee754_lgamma_r(x,&signgam);
  22. }