don't remap internal-use syscall macros to nonexistent time32 syscalls
[musl] / src / math / sinhf.c
index 6ad19ea..b9caa79 100644 (file)
@@ -26,6 +26,6 @@ float sinhf(float x)
        }
 
        /* |x| > logf(FLT_MAX) or nan */
-       t = 2*h*__expo2f(absx);
+       t = __expo2f(absx, 2*h);
        return t;
 }