diff options
Diffstat (limited to 'lib/libF77/r_exp.c')
-rw-r--r-- | lib/libF77/r_exp.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/libF77/r_exp.c b/lib/libF77/r_exp.c new file mode 100644 index 0000000..a95f4bc --- /dev/null +++ b/lib/libF77/r_exp.c @@ -0,0 +1,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) ); +} |