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/sin/csina.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/elementaryFunctions/sin/csina.c') diff --git a/src/elementaryFunctions/sin/csina.c b/src/elementaryFunctions/sin/csina.c index 4e400055..6392af41 100644 --- a/src/elementaryFunctions/sin/csina.c +++ b/src/elementaryFunctions/sin/csina.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET ** ** Started on Fri Dec 8 13:07:37 2006 jofret -** Last update Mon Mar 19 11:36:02 2007 jofret +** Last update Mon Oct 22 09:51:11 2007 bruno ** ** Copyright INRIA 2006 */ #include "sin.h" -void csina(floatComplex* x, floatComplex* y, int size) { +void csina(floatComplex* x, int size, floatComplex* y) { int i = 0; for (i = 0; i < size; ++i) { y[i] = csins(x[i]); -- cgit