summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/acosh/dacosha.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/acosh/dacosha.c')
-rw-r--r--src/elementaryFunctions/acosh/dacosha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elementaryFunctions/acosh/dacosha.c b/src/elementaryFunctions/acosh/dacosha.c
index 27536bcb..f6ddc6fc 100644
--- a/src/elementaryFunctions/acosh/dacosha.c
+++ b/src/elementaryFunctions/acosh/dacosha.c
@@ -5,14 +5,14 @@
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Fri Jan 5 11:29:20 2007 jofret
-** Last update Thu Sep 6 10:43:55 2007 bruno
+** Last update Mon Oct 22 09:59:29 2007 bruno
**
** Copyright INRIA 2007
*/
#include "acosh.h"
-void dacosha(double* x, double* y, int size) {
+void dacosha(double* x, int size, double* y) {
int i = 0;
for (i = 0; i < size; ++i) {
y[i] = dacoshs(x[i]);