mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-01 02:54:39 +01:00
9ea2a99edb
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15071 a95241bf-73f2-0310-859d-f6bbb57e9c96
16 lines
296 B
C
16 lines
296 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
double sin(), cos(), sinh(), cosh();
|
|
VOID z_cos(r, z) doublecomplex *r, *z;
|
|
#else
|
|
#undef abs
|
|
#include "math.h"
|
|
void z_cos(doublecomplex *r, doublecomplex *z)
|
|
#endif
|
|
{
|
|
double zi = z->i, zr = z->r;
|
|
r->r = cos(zr) * cosh(zi);
|
|
r->i = - sin(zr) * sinh(zi);
|
|
}
|