e_lgammaf.c 948 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* e_lgammaf.c -- float version of e_lgamma.c.
  2. * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
  3. */
  4. /*
  5. * ====================================================
  6. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  7. *
  8. * Developed at SunPro, a Sun Microsystems, Inc. business.
  9. * Permission to use, copy, modify, and distribute this
  10. * software is freely granted, provided that this notice
  11. * is preserved.
  12. * ====================================================
  13. */
  14. #include "cdefs-compat.h"
  15. //__FBSDID("$FreeBSD: src/lib/msun/src/e_lgammaf.c,v 1.8 2008/02/22 02:30:35 das Exp $");
  16. /* __ieee754_lgammaf(x)
  17. * Return the logarithm of the Gamma function of x.
  18. *
  19. * Method: call __ieee754_lgammaf_r
  20. */
  21. #include <openlibm_math.h>
  22. #include "math_private.h"
  23. OLM_DLLEXPORT float
  24. __ieee754_lgammaf(float x)
  25. {
  26. #ifdef OPENLIBM_ONLY_THREAD_SAFE
  27. int signgam;
  28. #endif
  29. return __ieee754_lgammaf_r(x,&signgam);
  30. }