musl - an implementation of the standard library for Linux-based systems
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)));
}
|