diff options
Diffstat (limited to 'src/math/tgammal.c')
-rw-r--r-- | src/math/tgammal.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/tgammal.c b/src/math/tgammal.c index 5c1a02a6..5336c5b1 100644 --- a/src/math/tgammal.c +++ b/src/math/tgammal.c @@ -272,4 +272,10 @@ small: q = z / (x * __polevll(x, S, 8)); return q; } +#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384 +// TODO: broken implementation to make things compile +long double tgammal(long double x) +{ + return tgamma(x); +} #endif |