use alternate formula for acos asm to avoid loss of precision
[oweals/musl.git] / src / math / lgamma.c
index d12462b9ec82565b9ad46cf25734c6f3f950a78c..d8b85312b82494b8afcedc41c20590ee96a7ae78 100644 (file)
@@ -1,8 +1,11 @@
 #include "libm.h"
 
+extern int __signgam;
+double __lgamma_r(double, int *);
+
 double lgamma(double x)
 {
-       return lgamma_r(x, &signgam);
+       return __lgamma_r(x, &__signgam);
 }
 
 // FIXME