123456789101112131415161718192021222324252627282930313233 |
- #include "math_private.h"
- #ifdef __STDC__
-
- double attribute_hidden __ieee754_gamma_r(double x, int *signgamp)
- #else
- double attribute_hidden __ieee754_gamma_r(x,signgamp)
- double x; int *signgamp;
- #endif
- {
- return __ieee754_lgamma_r(x,signgamp);
- }
|