mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-16 18:59:46 +08:00
a152cad74a
From-SVN: r26740
18 lines
283 B
C
18 lines
283 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
extern double sin(), cos(), sinh(), cosh();
|
|
|
|
VOID c_sin(r, z) complex *r, *z;
|
|
#else
|
|
#undef abs
|
|
#include "math.h"
|
|
|
|
void c_sin(complex *r, complex *z)
|
|
#endif
|
|
{
|
|
double zi = z->i, zr = z->r;
|
|
r->r = sin(zr) * cosh(zi);
|
|
r->i = cos(zr) * sinh(zi);
|
|
}
|