Add define for Kirk Smith's USR Courier driver. Change default baud
[unix-history] / usr / src / usr.bin / f77 / libF77 / c_sin.c
CommitLineData
1b2ad0f5 1/*
3fc68725
RE
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
6 * @(#)c_sin.c 5.1 %G%
1b2ad0f5
DW
7 */
8
9#include "complex"
10
11c_sin(r, z)
12complex *r, *z;
13{
14double sin(), cos(), sinh(), cosh();
15
16r->real = sin(z->real) * cosh(z->imag);
17r->imag = cos(z->real) * sinh(z->imag);
18}