X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fasinhl.c;h=8635f52e82381bdaff12badbd7cd170b2e05bf62;hb=f9895817321790bef33a56e3b10f3f71d989c23e;hp=e5f3175121cc6145d8d6dc7590d1ddb189065894;hpb=aa0c4a204e28cfc90a9ee955691a6cbe014c9fde;p=musl diff --git a/src/math/asinhl.c b/src/math/asinhl.c index e5f31751..8635f52e 100644 --- a/src/math/asinhl.c +++ b/src/math/asinhl.c @@ -32,4 +32,10 @@ long double asinhl(long double x) } return s ? -x : x; } +#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384 +// TODO: broken implementation to make things compile +long double asinhl(long double x) +{ + return asinh(x); +} #endif