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