xref: /haiku/src/system/libroot/posix/musl/math/x86/gamma.c (revision f504f61099b010fbfa94b1cc63d2e9072c7f7185)
1 #include "libm.h"
2 
gamma(double x)3 double gamma(double x)
4 {
5 	return lgamma(x);
6 }
7 
gammaf(float x)8 float gammaf(float x)
9 {
10 	return lgammaf(x);
11 }
12