change jmp_buf to share an underlying type and struct tag with sigjmp_buf
[musl] / src / math / lgamma.c
1 #include <math.h>
2
3 extern int __signgam;
4 double __lgamma_r(double, int *);
5
6 double lgamma(double x)
7 {
8         return __lgamma_r(x, &__signgam);
9 }