summaryrefslogtreecommitdiffstats
path: root/lib/libF77/d_cosh.c
blob: 1181833cc1fa3396b114652170e6d9770b8c9fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

#ifdef KR_headers
double cosh();
double d_cosh(x) doublereal *x;
#else
#undef abs
#include "math.h"
double d_cosh(doublereal *x)
#endif
{
return( cosh(*x) );
}
OpenPOWER on IntegriCloud