From b2efc612bf54abe1ab6a44e65c26016e794ae606 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 2 Jul 2008 09:45:40 +0000 Subject: --- src/string/disp/cdispa.c | 2 +- src/string/disp/sdispa.c | 2 +- src/string/includes/disp.h | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/string/disp/cdispa.c b/src/string/disp/cdispa.c index bcb6afa1..d17d153e 100644 --- a/src/string/disp/cdispa.c +++ b/src/string/disp/cdispa.c @@ -12,7 +12,7 @@ #include "disp.h" -void cdispa (floatComplex* in, int size) { +void cdispa (floatComplex* (in), int size) { int i = 0; for (i = 0; i < size; ++i) { cdisps (in[i]); diff --git a/src/string/disp/sdispa.c b/src/string/disp/sdispa.c index 6a6a1069..b2094a2d 100644 --- a/src/string/disp/sdispa.c +++ b/src/string/disp/sdispa.c @@ -10,7 +10,7 @@ * */ -#include "dips.h" +#include "disp.h" void sdipsa (float* in, int size){ int i = 0; diff --git a/src/string/includes/disp.h b/src/string/includes/disp.h index 5af6e540..7a058900 100644 --- a/src/string/includes/disp.h +++ b/src/string/includes/disp.h @@ -10,10 +10,14 @@ * */ + + #ifndef __DISP_H__ #define __DISP_H__ #include +#include "floatComplex.h" +#include "doubleComplex.h" void sdips (float in); -- cgit