diff options
author | FreeArtMan <dos21h@gmail.com> | 2015-12-23 18:02:26 +0000 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2015-12-23 18:02:26 +0000 |
commit | 704f47c888ad33e2064a0bd1ec740a6a1823411d (patch) | |
tree | 63e1a517813ce1c96d14d8283d84ea8f0eeb0316 /test/ui_tui_waterfall.c | |
parent | 509c6f05b2ae770b9bee253621fad7be442fac1e (diff) | |
download | radiola-704f47c888ad33e2064a0bd1ec740a6a1823411d.tar.gz radiola-704f47c888ad33e2064a0bd1ec740a6a1823411d.zip |
Removed some constanst that appears in c11
Diffstat (limited to 'test/ui_tui_waterfall.c')
-rw-r--r-- | test/ui_tui_waterfall.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ui_tui_waterfall.c b/test/ui_tui_waterfall.c index 355751f..cc63fc3 100644 --- a/test/ui_tui_waterfall.c +++ b/test/ui_tui_waterfall.c @@ -1,7 +1,7 @@ -#include <math.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> +#include <math.h> //radiola #include <draw/tui.h> @@ -56,6 +56,7 @@ int normalise( uint8_t *ibuf, int ilen, uint8_t *obuf, int olen ) void sine_table(int size) { + int i; double d; LOG2_N_WAVE = size; |