has_fftw3.cpp 401 B

12345678910111213141516171819
  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. #include <fftw3.h>
  6. int main()
  7. {
  8. fftwq_plan plan; // early versions don't have this it seems.
  9. fftw_cleanup();
  10. fftwf_cleanup();
  11. fftwl_cleanup();
  12. return 0;
  13. }