summaryrefslogtreecommitdiff
path: root/src/complex/ccosf.c
blob: 490be9b3f218b5459cb9ef580a315076206fe1bf (plain) (blame)
1
2
3
4
5
6
#include "complex_impl.h"

float complex ccosf(float complex z)
{
	return ccoshf(CMPLXF(-cimagf(z), crealf(z)));
}