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