math: fix scalbn and scalbnf on overflow/underflow
[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 }