diff options
Diffstat (limited to 'src/elementaryFunctions/log10/clog10a.c')
-rw-r--r-- | src/elementaryFunctions/log10/clog10a.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elementaryFunctions/log10/clog10a.c b/src/elementaryFunctions/log10/clog10a.c index f38c2651..2228c869 100644 --- a/src/elementaryFunctions/log10/clog10a.c +++ b/src/elementaryFunctions/log10/clog10a.c @@ -5,14 +5,14 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Thu Sep 6 16:23:40 2007 bruno -** Last update Fri Sep 7 10:49:01 2007 bruno +** Last update Mon Oct 22 09:52:46 2007 bruno ** ** Copyright INRIA 2007 */ #include "log10.h" -void clog10a(floatComplex* in, floatComplex* out, int size) { +void clog10a(floatComplex* in, int size, floatComplex* out) { int i = 0; for (i = 0 ; i < size ; ++i) { out[i] = clog10s(in[i]); |