diff options
Diffstat (limited to 'src/elementaryFunctions/atanh/datanha.c')
-rw-r--r-- | src/elementaryFunctions/atanh/datanha.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elementaryFunctions/atanh/datanha.c b/src/elementaryFunctions/atanh/datanha.c index 3c2f62b6..149c6f86 100644 --- a/src/elementaryFunctions/atanh/datanha.c +++ b/src/elementaryFunctions/atanh/datanha.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Dec 7 14:54:56 2006 jofret -** Last update Thu Sep 6 15:12:16 2007 bruno +** Last update Mon Oct 22 09:56:40 2007 bruno ** ** Copyright INRIA 2006 */ #include "atanh.h" -void datanha(double* x, double* y, int size) { +void datanha(double* x, int size, double* y) { int i = 0; for (i = 0; i < size; ++i) { y[i] = datanhs(x[i]); |