summaryrefslogtreecommitdiff
path: root/lib/libm/cacoshf.c
blob: 67c9258bb2025be7df1d5944b4db1510c080db66 (plain)
1
2
3
4
5
6
7
8
#include <complex.h>

float complex cacoshf(float complex z)
{
	float complex w;

	return clogf(z + csqrtf(z + 1) * csqrtf(z - 1));
}