9 lines
86 B
C
9 lines
86 B
C
|
#include "f2c.h"
|
||
|
|
||
|
double d_exp(x)
|
||
|
doublereal *x;
|
||
|
{
|
||
|
double exp();
|
||
|
return( exp(*x) );
|
||
|
}
|