first commit of the new libm!
[musl] / src / math / lgammaf.c
diff --git a/src/math/lgammaf.c b/src/math/lgammaf.c
new file mode 100644 (file)
index 0000000..f50f237
--- /dev/null
@@ -0,0 +1,9 @@
+#include "libm.h"
+
+float lgammaf(float x)
+{
+       return lgamma_r(x, &signgam);
+}
+
+// FIXME
+//weak_alias(lgammaf, gammaf);