diff options
author | Pauli Virtanen <pav@iki.fi> | 2012-11-11 21:54:53 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2012-11-11 21:56:23 +0200 |
commit | bee8c4d2474bbd21acfbd4d7e8c71cf12b3d6227 (patch) | |
tree | 62fc307987aeec0225e48d9a031adb26caa46722 | |
parent | 75b8119f8145ab08a436ecfd7de868c6c6ba8f6d (diff) | |
download | numpy-bee8c4d2474bbd21acfbd4d7e8c71cf12b3d6227.tar.gz |
BUG: fix Python 2.4 build with NPY_SEPARATE_COMPILATION
-rw-r--r-- | numpy/core/src/umath/reduction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/reduction.c b/numpy/core/src/umath/reduction.c index 444682d57..e6ed04e99 100644 --- a/numpy/core/src/umath/reduction.c +++ b/numpy/core/src/umath/reduction.c @@ -21,7 +21,7 @@ #include <numpy/arrayobject.h> #include "npy_config.h" -#include "numpy/npy_3kcompat.h" +#include "npy_pycompat.h" #include "lowlevel_strided_loops.h" #include "reduction.h" |