musl - an implementation of the standard library for Linux-based systems
blob: d7e6b545474dd299bea83bf8a06e73fab49f6413 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include "complex_impl.h"
float complex cacoshf(float complex z)
{
z = cacosf(z);
return CMPLXF(-cimagf(z), crealf(z));
}
|