this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

include guard for kiss guts - fixes compile on unity build systems

+7
+7
_kiss_fft_guts.h
··· 10 10 defines kiss_fft_scalar as either short or a float type 11 11 and defines 12 12 typedef struct { kiss_fft_scalar r; kiss_fft_scalar i; }kiss_fft_cpx; */ 13 + 14 + #ifndef _kiss_fft_guts_h 15 + #define _kiss_fft_guts_h 16 + 13 17 #include "kiss_fft.h" 14 18 #include <limits.h> 15 19 ··· 157 161 #define KISS_FFT_TMP_ALLOC(nbytes) KISS_FFT_MALLOC(nbytes) 158 162 #define KISS_FFT_TMP_FREE(ptr) KISS_FFT_FREE(ptr) 159 163 #endif 164 + 165 + #endif /* _kiss_fft_guts_h */ 166 +