math: move x86_64 exp2l implementation to exp2l.s from expl.s
[musl] / src / math / lgammaf.c
1 #include <math.h>
2
3 extern int __signgam;
4 float __lgammaf_r(float, int *);
5
6 float lgammaf(float x)
7 {
8         return __lgammaf_r(x, &__signgam);
9 }