]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/math/config/has_fftw3.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / math / config / has_fftw3.cpp
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
8 int main()
9 {
10 fftw_cleanup();
11 fftwf_cleanup();
12 fftwl_cleanup();
13
14 return 0;
15 }
16