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