fftw3 support
[physik/nlsop.git] / dft.h
1 /* dft.h -- dft header file */
2
3 #define _GNU_SOURCE
4 #include <stdio.h>
5 #include <sys/types.h>
6 #include <sys/stat.h>
7 #include <fcntl.h>
8 #include <unistd.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <string.h>
12
13 #ifdef USE_FFTW3
14   #include <fftw3.h>
15   #include <math.h>
16 #else
17   #include "fourier.h"
18 #endif
19
20 #include "bmp.h"