fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / math / coshf.c
index b09f2ee..e739cff 100644 (file)
@@ -28,6 +28,6 @@ float coshf(float x)
        }
 
        /* |x| > log(FLT_MAX) or nan */
-       t = __expo2f(x);
+       t = __expo2f(x, 1.0f);
        return t;
 }