X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fsinh.c;h=a01951ae6fc4fdb4954de0b6f24323b230f6ae88;hb=4554f155dd23a65fcdfd39f1d5af8af55ba37694;hp=00022c4e6ff6d8250ea238207a12199a1e349dac;hpb=c599f4f4d705ba215a2672b92baa1c29d9dd0735;p=musl diff --git a/src/math/sinh.c b/src/math/sinh.c index 00022c4e..a01951ae 100644 --- a/src/math/sinh.c +++ b/src/math/sinh.c @@ -34,6 +34,6 @@ double sinh(double x) /* |x| > log(DBL_MAX) or nan */ /* note: the result is stored to handle overflow */ - t = 2*h*__expo2(absx); + t = __expo2(absx, 2*h); return t; }