Add missing include guard

This commit is contained in:
Brendan McDonnell 2019-08-07 17:09:14 -04:00
parent 3050076ab3
commit 725dc61816

View File

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