ref: 227564e1421648f3073d27fb78127450f96f65d4
parent: a89438a6ce9d3cd67afabed4dee7308672f75e8a
author: Paul Brossier <piem@altern.org>
date: Sun Jul 23 06:27:19 EDT 2006
remove useless extern remove useless extern
--- a/src/fft.h
+++ b/src/fft.h
@@ -57,13 +57,13 @@
\param size length of the FFT
*/
-extern aubio_fft_t * new_aubio_fft(uint_t size);
+aubio_fft_t * new_aubio_fft(uint_t size);
/** delete FFT object
\param s fft object as returned by new_aubio_fft
*/
-extern void del_aubio_fft(aubio_fft_t * s);
+void del_aubio_fft(aubio_fft_t * s);
/** compute forward FFT
\param s fft object as returned by new_aubio_fft
@@ -72,7 +72,7 @@
\param size length of the input vector
*/
-extern void aubio_fft_do (const aubio_fft_t *s, const smpl_t * data,
+void aubio_fft_do (const aubio_fft_t *s, const smpl_t * data,
fft_data_t * spectrum, const uint_t size);
/** compute backward (inverse) FFT
@@ -82,7 +82,7 @@
\param size length of the input vector
*/
-extern void aubio_fft_rdo(const aubio_fft_t *s, const fft_data_t * spectrum,
+void aubio_fft_rdo(const aubio_fft_t *s, const fft_data_t * spectrum,
smpl_t * data, const uint_t size);
/** compute norm vector from input spectrum