1234567891011121314151617181920212223242526272829303132333435 |
- #include <math.h>
- #include "math_private.h"
- libm_hidden_proto(signgam)
- #ifdef __STDC__
-
- double attribute_hidden __ieee754_lgamma(double x)
- #else
- double attribute_hidden __ieee754_lgamma(x)
- double x;
- #endif
- {
- return __ieee754_lgamma_r(x,&signgam);
- }
|