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

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