diff options
Diffstat (limited to 'libf2c/libF77/r_exp.c')
-rw-r--r-- | libf2c/libF77/r_exp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libf2c/libF77/r_exp.c b/libf2c/libF77/r_exp.c index 2a9581c267c..7c1ceea5895 100644 --- a/libf2c/libF77/r_exp.c +++ b/libf2c/libF77/r_exp.c @@ -2,7 +2,8 @@ #undef abs #include <math.h> -double r_exp(real *x) +double +r_exp (real * x) { -return( exp(*x) ); + return (exp (*x)); } |