12116Sjkh/* e_gammaf_r.c -- float version of e_gamma_r.c.
22116Sjkh * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
32116Sjkh */
42116Sjkh
52116Sjkh/*
62116Sjkh * ====================================================
72116Sjkh * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
82116Sjkh *
92116Sjkh * Developed at SunPro, a Sun Microsystems, Inc. business.
102116Sjkh * Permission to use, copy, modify, and distribute this
118870Srgrimes * software is freely granted, provided that this notice
122116Sjkh * is preserved.
132116Sjkh * ====================================================
142116Sjkh */
152116Sjkh
16176451Sdas#include <sys/cdefs.h>
17176451Sdas__FBSDID("$FreeBSD$");
182116Sjkh
192116Sjkh/* __ieee754_gammaf_r(x, signgamp)
208870Srgrimes * Reentrant version of the logarithm of the Gamma function
218870Srgrimes * with user provide pointer for the sign of Gamma(x).
222116Sjkh *
232116Sjkh * Method: See __ieee754_lgammaf_r
242116Sjkh */
252116Sjkh
262116Sjkh#include "math.h"
272116Sjkh#include "math_private.h"
282116Sjkh
2997413Salfredfloat
3097413Salfred__ieee754_gammaf_r(float x, int *signgamp)
312116Sjkh{
322116Sjkh	return __ieee754_lgammaf_r(x,signgamp);
332116Sjkh}
34