summaryrefslogtreecommitdiff
path: root/libf2c/libF77/r_exp.c
blob: 2a9581c267c9c1f9a9a03551ae8ed45cc8fb61af (plain)
1
2
3
4
5
6
7
8
#include "f2c.h"

#undef abs
#include <math.h>
double r_exp(real *x)
{
return( exp(*x) );
}