mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 08:24:10 +01:00
13 lines
184 B
C
13 lines
184 B
C
#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);
|
|
}
|