diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-21 01:57:41 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-12-17 18:27:16 +0100 |
commit | 2d7e0576b6d649a0eb0392214bace1e218fb5030 (patch) | |
tree | da7d7de8a81b35ecafdf8a7bcfc2028a78f84a2e | |
parent | fc5a610945a8977724245ad86d10c75f36d65553 (diff) | |
download | arts-2d7e0576b6d649a0eb0392214bace1e218fb5030.tar.gz arts-2d7e0576b6d649a0eb0392214bace1e218fb5030.zip |
Fix tdemultimedia FTBFS when gcc hidden visibility is enabled
(cherry picked from commit 7395916e07ea77b31f6ba3bde09d9bd6c76de8ef)
-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 } |