Add define for Kirk Smith's USR Courier driver. Change default baud
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_cosh.c
CommitLineData
a10626f6 1/*
0e33af22
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 * @(#)d_cosh.c 5.1 %G%
a10626f6
DW
7 */
8
9double d_cosh(x)
10double *x;
11{
12double cosh();
13return( cosh(*x) );
14}