diff options
author | Johnathan Corgan | 2012-06-20 07:36:40 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-06-20 07:36:40 -0700 |
commit | 446494ea3bb021cb0b423c13bde2689c5046fe39 (patch) | |
tree | d07794c79e49b71c89266e2de74fee2308b41b21 /gr-fft/include | |
parent | d4843d2c9750bbf7b40e77b80936a08bcf39c1d1 (diff) | |
parent | 81bb55f3a7bb8f64c2bc75b02306700fb5b60a43 (diff) | |
download | gnuradio-446494ea3bb021cb0b423c13bde2689c5046fe39.tar.gz gnuradio-446494ea3bb021cb0b423c13bde2689c5046fe39.tar.bz2 gnuradio-446494ea3bb021cb0b423c13bde2689c5046fe39.zip |
Merge branch 'gr_filter'
Diffstat (limited to 'gr-fft/include')
-rw-r--r-- | gr-fft/include/fft/fft.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-fft/include/fft/fft.h b/gr-fft/include/fft/fft.h index 5cc2e21e8..e3fd3f278 100644 --- a/gr-fft/include/fft/fft.h +++ b/gr-fft/include/fft/fft.h @@ -37,15 +37,15 @@ namespace gr { /*! \brief Helper function for allocating complex fft buffers */ - gr_complex* malloc_complex(int size); + FFT_API gr_complex* malloc_complex(int size); /*! \brief Helper function for allocating float fft buffers */ - float* malloc_float(int size); + FFT_API float* malloc_float(int size); /*! \brief Helper function for freeing fft buffers */ - void free(void *b); + FFT_API void free(void *b); /*! * \brief Export reference to planner mutex for those apps that |