diff options
author | Timothy Pearson <[email protected]> | 2012-01-21 01:57:41 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-21 01:57:41 -0600 |
commit | 7395916e07ea77b31f6ba3bde09d9bd6c76de8ef (patch) | |
tree | d7ac983ad2a099d7fbf7e362a96b993a4abe7a58 /flow | |
parent | c85bc12559cbeaa3e18544a459adab147267007e (diff) | |
download | arts-7395916e07ea77b31f6ba3bde09d9bd6c76de8ef.tar.gz arts-7395916e07ea77b31f6ba3bde09d9bd6c76de8ef.zip |
Fix tdemultimedia FTBFS when gcc hidden visibility is enabled
Diffstat (limited to 'flow')
-rw-r--r-- | flow/fft.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -9,6 +9,7 @@ * compatible to avoid everybody to reimplement/duplicate their own fft. */ +#include "arts_export.h" #ifdef __cplusplus extern "C" { @@ -23,8 +24,8 @@ void arts_fft_float ( float *RealIn, /* array of input's real samples */ float *ImaginaryIn, /* array of input's imag samples */ float *RealOut, /* array of output's reals */ - float *ImaginaryOut ); /* array of output's imaginaries */ - + float *ImaginaryOut ) /* array of output's imaginaries */ + ARTS_EXPORT; #ifdef __cplusplus } |