diff options
author | Jaime <jaime.frio@gmail.com> | 2015-01-28 07:15:49 -0800 |
---|---|---|
committer | Jaime <jaime.frio@gmail.com> | 2015-01-28 07:15:49 -0800 |
commit | 0a7fe2e6c29a2007a32a6386b0762bf1a6fdffc6 (patch) | |
tree | 65828207d0455587ee96af732ea309e5dd44f2f6 | |
parent | a9411ab1ce272a820266373d3f24800bf84e4bcc (diff) | |
parent | 214bfd432e2fbc30e1b400c7c2f628cff2aa4559 (diff) | |
download | numpy-0a7fe2e6c29a2007a32a6386b0762bf1a6fdffc6.tar.gz |
Merge pull request #5515 from rgommers/aix-build
BLD: fix include order of headers, otherwise AIX build fails. See gh-5474
-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 |