X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fexpm1l.c;h=d17150785282f9ce2e566de629b0061cd8848207;hb=0c277ff156749628c678257f878d3a6edb5868de;hp=21a86c00518783a9f994eaf13aa119214bb2387a;hpb=6f64505df37c41d7496612dffe86048765339a7a;p=musl diff --git a/src/math/expm1l.c b/src/math/expm1l.c index 21a86c00..d1715078 100644 --- a/src/math/expm1l.c +++ b/src/math/expm1l.c @@ -114,4 +114,10 @@ long double expm1l(long double x) x = px * qx + (px - 1.0); return x; } +#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384 +// TODO: broken implementation to make things compile +long double expm1l(long double x) +{ + return expm1(x); +} #endif