From 143c4b77b83fa9d1455e553a621becc7ca585d10 Mon Sep 17 00:00:00 2001 From: jofret Date: Mon, 22 Oct 2007 15:22:10 +0000 Subject: Moving array functions prototype --- src/auxiliaryFunctions/abs/cabsa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/auxiliaryFunctions/abs/cabsa.c') diff --git a/src/auxiliaryFunctions/abs/cabsa.c b/src/auxiliaryFunctions/abs/cabsa.c index a8e0a048..a7d41efc 100644 --- a/src/auxiliaryFunctions/abs/cabsa.c +++ b/src/auxiliaryFunctions/abs/cabsa.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET ** ** Started on Wed Apr 25 13:23:20 2007 jofret -** Last update Wed Apr 25 13:24:32 2007 jofret +** Last update Mon Oct 22 10:46:16 2007 bruno ** ** Copyright INRIA 2007 */ #include "abs.h" -void cabsa(floatComplex *in, float* out, int size) { +void cabsa(floatComplex *in, int size, float* out) { int i = 0; for (i = 0; i < size; ++i) { out[i] = cabss(in[i]); -- cgit