
* libF77/*: Delete KR_headers cruft. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54132
8 lines
94 B
C
8 lines
94 B
C
#include "f2c.h"
|
|
|
|
#undef abs
|
|
#include <math.h>
|
|
double r_cosh(real *x)
|
|
{
|
|
return( cosh(*x) );
|
|
}
|