Enabled the regex code in the library. We know have POSIX regular expression
[unix-history] / lib / libF77 / z_cos.c
CommitLineData
547779a8
WH
1#include "f2c.h"
2
3#ifdef KR_headers
4double sin(), cos(), sinh(), cosh();
5VOID z_cos(r, z) doublecomplex *r, *z;
6#else
7#undef abs
8#include "math.h"
9void z_cos(doublecomplex *r, doublecomplex *z)
10#endif
11{
12r->r = cos(z->r) * cosh(z->i);
13r->i = - sin(z->r) * sinh(z->i);
14}