stdio.h defines BUFSIZ
[unix-history] / usr / src / usr.bin / f77 / libF77 / r_cosh.c
CommitLineData
950dac39 1/*
e309c71b
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 *
46452188 6 * @(#)r_cosh.c 5.2 %G%
950dac39
DW
7 */
8
46452188 9float r_cosh(x)
950dac39
DW
10float *x;
11{
12double cosh();
13return( cosh(*x) );
14}