1 // Copyright John Maddock 2017. 2 // Use, modification and distribution are subject to the 3 // Boost Software License, Version 1.0. (See accompanying file 4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 6 #include <fftw3.h> 7 main()8int main() 9 { 10 fftwq_plan plan; // early versions don't have this it seems. 11 12 fftw_cleanup(); 13 fftwf_cleanup(); 14 fftwl_cleanup(); 15 16 17 return 0; 18 } 19 20