diff options
| author | Ralf Gommers <ralf.gommers@googlemail.com> | 2015-01-28 08:14:40 +0100 |
|---|---|---|
| committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2015-01-28 08:14:40 +0100 |
| commit | 214bfd432e2fbc30e1b400c7c2f628cff2aa4559 (patch) | |
| tree | f87d4491f94c7e1393729b5158df39894f5721fd /numpy/fft | |
| parent | fbcc24fa7cedd2bbf25506a0683f89d13f2d4846 (diff) | |
| download | numpy-214bfd432e2fbc30e1b400c7c2f628cff2aa4559.tar.gz | |
BLD: fix include order of headers, otherwise AIX build fails. See gh-5474.
Diffstat (limited to 'numpy/fft')
| -rw-r--r-- | numpy/fft/fftpack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/fft/fftpack.c b/numpy/fft/fftpack.c index 355076a30..fc9689ddc 100644 --- a/numpy/fft/fftpack.c +++ b/numpy/fft/fftpack.c @@ -6,9 +6,9 @@ Algorithmically based on Fortran-77 FFTPACK by Paul N. Swarztrauber (Version 4, /* 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 |
