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/zabsa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/auxiliaryFunctions/abs/zabsa.c') diff --git a/src/auxiliaryFunctions/abs/zabsa.c b/src/auxiliaryFunctions/abs/zabsa.c index 0867a754..56b24ce9 100644 --- a/src/auxiliaryFunctions/abs/zabsa.c +++ b/src/auxiliaryFunctions/abs/zabsa.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Wed Apr 25 13:24:43 2007 jofret -** Last update Wed Apr 25 13:25:04 2007 jofret +** Last update Mon Oct 22 10:47:00 2007 bruno ** ** Copyright INRIA 2007 */ #include "abs.h" -void zabsa(doubleComplex *in, double* out, int size) { +void zabsa(doubleComplex *in, int size, double* out) { int i = 0; for (i = 0; i < size; ++i) { out[i] = zabss(in[i]); -- cgit