only use memcpy realloc to shrink if an exact-sized free chunk exists
[oweals/musl.git] / src / math / lgammaf.c
1 #include <math.h>
2 #include "libm.h"
3
4 float lgammaf(float x)
5 {
6         return __lgammaf_r(x, &__signgam);
7 }