whitespace

This commit is contained in:
Brendan McDonnell 2019-08-07 12:04:03 -04:00
parent b24d80769b
commit 24d23ffbb8

View File

@ -34,12 +34,12 @@ extern "C" {
#ifdef USE_SIMD
# include <xmmintrin.h>
# define kiss_fft_scalar __m128
#define KISS_FFT_MALLOC(nbytes) _mm_malloc(nbytes,16)
#define KISS_FFT_FREE _mm_free
#else
#define KISS_FFT_MALLOC malloc
#define KISS_FFT_FREE free
#endif
# define KISS_FFT_MALLOC(nbytes) _mm_malloc(nbytes,16)
# define KISS_FFT_FREE _mm_free
#else
# define KISS_FFT_MALLOC malloc
# define KISS_FFT_FREE free
#endif
#ifdef FIXED_POINT