this repo has no description
0
fork

Configure Feed

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

Allow user override of KISS_FFT_MALLOC and/or KISS_FFT_FREE on non-SIMD platforms

+7 -2
+7 -2
kiss_fft.h
··· 37 37 # define KISS_FFT_MALLOC(nbytes) _mm_malloc(nbytes,16) 38 38 # define KISS_FFT_FREE _mm_free 39 39 #else 40 - # define KISS_FFT_MALLOC malloc 41 - # define KISS_FFT_FREE free 40 + /* user may override KISS_FFT_MALLOC and/or KISS_FFT_FREE */ 41 + # ifndef KISS_FFT_MALLOC 42 + # define KISS_FFT_MALLOC malloc 43 + # endif 44 + # ifndef KISS_FFT_FREE 45 + # define KISS_FFT_FREE free 46 + # endif 42 47 #endif 43 48 44 49