diff --git a/_kiss_fft_guts.h b/_kiss_fft_guts.h index 7bf5762..48770a3 100644 --- a/_kiss_fft_guts.h +++ b/_kiss_fft_guts.h @@ -6,6 +6,9 @@ * See COPYING file for more information. */ +#ifndef KISS_FFT_GUTS_H +#define KISS_FFT_GUTS_H + /* kiss_fft.h defines kiss_fft_scalar as either short or a float type and defines @@ -157,3 +160,5 @@ struct kiss_fft_state{ #define KISS_FFT_TMP_ALLOC(nbytes) KISS_FFT_MALLOC(nbytes) #define KISS_FFT_TMP_FREE(ptr) KISS_FFT_FREE(ptr) #endif + +#endif