summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/asinh/sasinha.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/asinh/sasinha.c')
-rw-r--r--src/elementaryFunctions/asinh/sasinha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elementaryFunctions/asinh/sasinha.c b/src/elementaryFunctions/asinh/sasinha.c
index 65a1e9db..16916ef1 100644
--- a/src/elementaryFunctions/asinh/sasinha.c
+++ b/src/elementaryFunctions/asinh/sasinha.c
@@ -5,14 +5,14 @@
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Fri Jan 5 10:25:57 2007 jofret
-** Last update Thu Sep 6 11:21:13 2007 bruno
+** Last update Mon Oct 22 09:57:55 2007 bruno
**
** Copyright INRIA 2007
*/
#include "asinh.h"
-void sasinha(float* x, float* y, int size) {
+void sasinha(float* x, int size, float* y) {
int i = 0;
for (i = 0; i < size; ++i) {
y[i] = sasinhs(x[i]);