e_gamma_r.c 812 B

1234567891011121314151617181920212223242526272829303132
  1. /* @(#)e_gamma_r.c 1.3 95/01/18 */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  6. * Developed at SunSoft, a Sun Microsystems, Inc. business.
  7. * Permission to use, copy, modify, and distribute this
  8. * software is freely granted, provided that this notice
  9. * is preserved.
  10. * ====================================================
  11. *
  12. */
  13. #include <sys/cdefs.h>
  14. //__FBSDID("$FreeBSD$");
  15. /* __ieee754_gamma_r(x, signgamp)
  16. * Reentrant version of the logarithm of the Gamma function
  17. * with user provide pointer for the sign of Gamma(x).
  18. *
  19. * Method: See __ieee754_lgamma_r
  20. */
  21. #include <openlibm_math.h>
  22. #include "math_private.h"
  23. double
  24. __ieee754_gamma_r(double x, int *signgamp)
  25. {
  26. return __ieee754_lgamma_r(x,signgamp);
  27. }