source: trunk/sys/libm/e_gamma.c @ 256

Last change on this file since 256 was 1, checked in by alain, 7 years ago

First import

File size: 705 bytes
Line 
1
2/* @(#)e_gamma.c 5.1 93/09/24 */
3/*
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 *
7 * Developed at SunPro, 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/* __ieee754_gamma(x)
16 * Return the logarithm of the Gamma function of x.
17 *
18 * Method: call __ieee754_gamma_r
19 */
20
21#include <libm/fdlibm.h>
22
23#ifdef __STDC__
24        double __ieee754_gamma(double x)
25#else
26        double __ieee754_gamma(x)
27        double x;
28#endif
29{
30        return __ieee754_gamma_r(x,&signgam);
31}
Note: See TracBrowser for help on using the repository browser.