diff options
Diffstat (limited to 'gcc/f/runtime/libF77/z_sin.c')
-rw-r--r-- | gcc/f/runtime/libF77/z_sin.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/f/runtime/libF77/z_sin.c b/gcc/f/runtime/libF77/z_sin.c new file mode 100644 index 00000000000..94456c9c30a --- /dev/null +++ b/gcc/f/runtime/libF77/z_sin.c @@ -0,0 +1,19 @@ +#include "f2c.h" + +#ifdef KR_headers +double sin(), cos(), sinh(), cosh(); +VOID z_sin(resx, z) doublecomplex *resx, *z; +#else +#undef abs +#include <math.h> +void z_sin(doublecomplex *resx, doublecomplex *z) +#endif +{ +doublecomplex res; + +res.r = sin(z->r) * cosh(z->i); +res.i = cos(z->r) * sinh(z->i); + +resx->r = res.r; +resx->i = res.i; +} |