summaryrefslogtreecommitdiffstatshomepage
path: root/lib/libm_dbl/lgamma.c
blob: ed193da17d6446ae2d9bc11790ce0d32f9ea3f26 (plain) (blame)
1
2
3
4
5
6
7
8
#include <math.h>

double __lgamma_r(double, int*);

double lgamma(double x) {
    int sign;
    return __lgamma_r(x, &sign);
}