blob: ebc2fc78cbb1e24eec18c277efd1c64ec539bd74 [file] [log] [blame]
Elliott Hughes75531852014-09-18 11:23:58 -07001/* @(#)e_lgamma.c 1.3 95/01/18 */
2/*
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 *
6 * Developed at SunSoft, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
9 * is preserved.
10 * ====================================================
11 */
12
13#include <sys/cdefs.h>
14__FBSDID("$FreeBSD$");
15
16#include "math.h"
17#include "math_private.h"
18
19extern int signgam;
20
21long double
22lgammal(long double x)
23{
24 return lgammal_r(x,&signgam);
25}