From 9abdd47800ebd9b2c45f078338e9adabecf74f5a Mon Sep 17 00:00:00 2001 From: jofret Date: Mon, 22 Oct 2007 15:26:16 +0000 Subject: Moving array functions prototype and add some C99 Compliance --- src/elementaryFunctions/exp10/dexp10a.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/elementaryFunctions/exp10/dexp10a.c') diff --git a/src/elementaryFunctions/exp10/dexp10a.c b/src/elementaryFunctions/exp10/dexp10a.c index c243508a..270abc53 100644 --- a/src/elementaryFunctions/exp10/dexp10a.c +++ b/src/elementaryFunctions/exp10/dexp10a.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET ** ** Started on Thu Dec 7 14:54:56 2006 jofret -** Last update Thu Sep 6 16:57:38 2007 bruno +** Last update Mon Oct 22 09:53:56 2007 bruno ** ** Copyright INRIA 2006 */ #include "exp10.h" -void dexp10a(double* x, double* y, int size) { +void dexp10a(double* x, int size, double* y) { int i = 0; for (i = 0; i < size; ++i) { y[i] = dexp10s(x[i]); -- cgit