e_gamma_r.c 738 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_gamma_r(x, signgamp)
  13. * Reentrant version of the logarithm of the Gamma function
  14. * with user provide pointer for the sign of Gamma(x).
  15. *
  16. * Method: See __ieee754_lgamma_r
  17. */
  18. #include "math_private.h"
  19. /* __private_extern__ */
  20. double attribute_hidden __ieee754_gamma_r(double x, int *signgamp)
  21. {
  22. return __ieee754_lgamma_r(x,signgamp);
  23. }