diff options
Diffstat (limited to 'src/string/disp/sdispa.c')
-rw-r--r-- | src/string/disp/sdispa.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/string/disp/sdispa.c b/src/string/disp/sdispa.c index 3183a69f..42ff8c03 100644 --- a/src/string/disp/sdispa.c +++ b/src/string/disp/sdispa.c @@ -12,10 +12,11 @@ #include "disp.h" -void sdispa (float* in, int size){ +double sdispa (float* in, int size){ int i = 0; for (i = 0; i < size; ++i) { sdisps (in[i]); } - + printf("\n"); + return 0; } |