fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / math / lgamma.c
1 #include <math.h>
2 #include "libm.h"
3
4 double lgamma(double x)
5 {
6         return __lgamma_r(x, &__signgam);
7 }