X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fexpl.c;h=0a7f44f685ee3b708962dc9683698ffcd8074775;hb=3281047cfca0f3848d0613e3c0d19d41b0531564;hp=b62980fa4065f3043f57a76eeb9b4ad9f93c0c28;hpb=39c910fb061114e6aa5c3bf2c94b1d7262d62221;p=musl diff --git a/src/math/expl.c b/src/math/expl.c index b62980fa..0a7f44f6 100644 --- a/src/math/expl.c +++ b/src/math/expl.c @@ -119,4 +119,10 @@ long double expl(long double x) x = 1.0 + 2.0 * x; return scalbnl(x, k); } +#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384 +// TODO: broken implementation to make things compile +long double expl(long double x) +{ + return exp(x); +} #endif