fix TZ parsing logic for identifying POSIX-form strings
[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;
 }