Initial revision
[official-gcc.git] / gcc / f / runtime / libF77 / r_cosh.c
blob7ae72cc0cef95f9e798c9a280615043899d825ca
1 #include "f2c.h"
3 #ifdef KR_headers
4 double cosh();
5 double r_cosh(x) real *x;
6 #else
7 #undef abs
8 #include <math.h>
9 double r_cosh(real *x)
10 #endif
12 return( cosh(*x) );