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