blob: 2c423dce855871a4a6d04d24ed4392eec33d84ac [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001
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
Elliott Hughesa0ee0782013-01-30 19:06:37 -080015#include <sys/cdefs.h>
16__FBSDID("$FreeBSD$");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080017
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
28double
29__ieee754_gamma_r(double x, int *signgamp)
30{
31 return __ieee754_lgamma_r(x,signgamp);
32}