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