diff options
Diffstat (limited to 'libf2c/libF77/erfc_.c')
-rw-r--r-- | libf2c/libF77/erfc_.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libf2c/libF77/erfc_.c b/libf2c/libF77/erfc_.c index 5f72479..7f3ff8a 100644 --- a/libf2c/libF77/erfc_.c +++ b/libf2c/libF77/erfc_.c @@ -1,7 +1,8 @@ #include "f2c.h" -extern double erfc(double); -double G77_erfc_0 (real *x) +extern double erfc (double); +double +G77_erfc_0 (real * x) { -return( erfc(*x) ); + return (erfc (*x)); } |