[Scipy-svn] r4365 - branches/refactor_fft/scipy/fftpack/backends/mkl/src

scipy-svn at scipy.org scipy-svn at scipy.org
Fri May 16 02:21:26 EDT 2008


Author: cdavid
Date: 2008-05-16 01:21:22 -0500 (Fri, 16 May 2008)
New Revision: 4365

Modified:
   branches/refactor_fft/scipy/fftpack/backends/mkl/src/api.h
Log:
Set C linkage for public api of mkl backend.

Modified: branches/refactor_fft/scipy/fftpack/backends/mkl/src/api.h
===================================================================
--- branches/refactor_fft/scipy/fftpack/backends/mkl/src/api.h	2008-05-16 06:17:24 UTC (rev 4364)
+++ branches/refactor_fft/scipy/fftpack/backends/mkl/src/api.h	2008-05-16 06:21:22 UTC (rev 4365)
@@ -6,11 +6,13 @@
 /*
  * straight FFT api
  */
+extern "C" {
 void zfft_mkl(complex_double * inout,
 		 int n, int direction, int howmany, int normalize);
 
 void zfftnd_mkl(complex_double * inout, int rank,
 			 int *dims, int direction, int howmany,
 			 int normalize);
+};
 
 #endif




More information about the Scipy-svn mailing list