#include #include "libm.h" float lgammaf(float x) { return __lgammaf_r(x, &__signgam); } #ifdef TEST int main(void) { return 0; } #endif