blob: 59659754978f139f8189c83c5e3ec0b4d158cffe [file] [log] [blame]
#include "f2c.h"
#undef abs
#include "math.h"
void
c_cos (complex * r, complex * z)
{
double zi = z->i, zr = z->r;
r->r = cos (zr) * cosh (zi);
r->i = -sin (zr) * sinh (zi);
}