aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/r_exp.c
blob: d1dea75563f029c87d6c29ce9a16c697f3db819a (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) );
}