Pristine Ack-5.5
[Ack-5.5.git] / lang / fortran / lib / libF77 / r_cosh.c
1 #include "f2c.h"
2
3 double r_cosh(x)
4 real *x;
5 {
6 double cosh();
7 return( cosh(*x) );
8 }