1 2 3 4 5 6 7 8 9
#include "libm.h" float lgammaf(float x) { return lgamma_r(x, &signgam); } // FIXME //weak_alias(lgammaf, gammaf);