summaryrefslogtreecommitdiff
path: root/apps/plugins/fft/kiss_fft.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/fft/kiss_fft.c')
-rw-r--r--apps/plugins/fft/kiss_fft.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/fft/kiss_fft.c b/apps/plugins/fft/kiss_fft.c
index 05db6288fe..33837f7da8 100644
--- a/apps/plugins/fft/kiss_fft.c
+++ b/apps/plugins/fft/kiss_fft.c
@@ -18,10 +18,10 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18 fixed or floating point complex numbers. It also delares the kf_ internal functions. 18 fixed or floating point complex numbers. It also delares the kf_ internal functions.
19 */ 19 */
20 20
21static kiss_fft_cpx *scratchbuf=NULL; 21static kiss_fft_cpx *scratchbuf SHAREDBSS_ATTR = NULL;
22static size_t nscratchbuf=0; 22static size_t nscratchbuf SHAREDBSS_ATTR = 0;
23static kiss_fft_cpx *tmpbuf=NULL; 23static kiss_fft_cpx *tmpbuf SHAREDBSS_ATTR = NULL;
24static size_t ntmpbuf=0; 24static size_t ntmpbuf SHAREDBSS_ATTR = 0;
25 25
26#define CHECKBUF(buf,nbuf,n) \ 26#define CHECKBUF(buf,nbuf,n) \
27 do { \ 27 do { \