diff options
author | Johnathan Corgan | 2012-06-20 07:58:00 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-06-20 07:58:00 -0700 |
commit | 2036030273d1c4842670ca3b2bd96e72aa408c9e (patch) | |
tree | 46d627b9a6114d3f2ac5c52f2d430d5bec800818 /gr-fft/include | |
parent | 439b427e80ebc767db6e4e732213d89c2a6febd4 (diff) | |
parent | 446494ea3bb021cb0b423c13bde2689c5046fe39 (diff) | |
download | gnuradio-2036030273d1c4842670ca3b2bd96e72aa408c9e.tar.gz gnuradio-2036030273d1c4842670ca3b2bd96e72aa408c9e.tar.bz2 gnuradio-2036030273d1c4842670ca3b2bd96e72aa408c9e.zip |
Merge branch 'master' into wip/gr-blocks-master
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 |