diff options
Diffstat (limited to 'src/string')
-rw-r--r-- | src/string/disp/cdispa.c | 2 | ||||
-rw-r--r-- | src/string/disp/sdispa.c | 2 | ||||
-rw-r--r-- | 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 <stdio.h> +#include "floatComplex.h" +#include "doubleComplex.h" void sdips (float in); |