diff options
Diffstat (limited to 'numpy/fft/fftpack.c')
-rw-r--r-- | numpy/fft/fftpack.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/numpy/fft/fftpack.c b/numpy/fft/fftpack.c index 355076a30..277f49f07 100644 --- a/numpy/fft/fftpack.c +++ b/numpy/fft/fftpack.c @@ -1,18 +1,15 @@ /* -fftpack.c : A set of FFT routines in C. -Algorithmically based on Fortran-77 FFTPACK by Paul N. Swarztrauber (Version 4, 1985). - + * fftpack.c : A set of FFT routines in C. + * Algorithmically based on Fortran-77 FFTPACK by Paul N. Swarztrauber (Version 4, 1985). */ +#define NPY_NO_DEPRECATED_API NPY_API_VERSION -/* isign is +1 for backward and -1 for forward transforms */ - +#include <Python.h> #include <math.h> #include <stdio.h> -#include <Python.h> #include <numpy/ndarraytypes.h> #define DOUBLE - #ifdef DOUBLE #define Treal double #else |