From bd550240fad5e4d5316346b4074d9aa24cc5ef47 Mon Sep 17 00:00:00 2001 From: jmcph4 Date: Sun, 24 Mar 2019 10:44:06 +1000 Subject: [PATCH] Include `stdint.h` in `_kiss_fft_guts.h` This commit adds an `#include` directive for the standard integer header (`stdint.h`). --- _kiss_fft_guts.h | 1 + 1 file changed, 1 insertion(+) diff --git a/_kiss_fft_guts.h b/_kiss_fft_guts.h index bf5d53c..739330f 100644 --- a/_kiss_fft_guts.h +++ b/_kiss_fft_guts.h @@ -12,6 +12,7 @@ typedef struct { kiss_fft_scalar r; kiss_fft_scalar i; }kiss_fft_cpx; */ #include "kiss_fft.h" #include +#include #define MAXFACTORS 32 /* e.g. an fft of length 128 has 4 factors