diff options
Diffstat (limited to 'Tests/FindPython/NumPy/arraytest.c')
-rw-r--r-- | Tests/FindPython/NumPy/arraytest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/FindPython/NumPy/arraytest.c b/Tests/FindPython/NumPy/arraytest.c index db259e5..51db7bc 100644 --- a/Tests/FindPython/NumPy/arraytest.c +++ b/Tests/FindPython/NumPy/arraytest.c @@ -1,10 +1,10 @@ #include "Python.h" #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION -#include "numpy/arrayobject.h" - #include <math.h> +#include "numpy/arrayobject.h" + static PyObject* vecsq(PyObject* self, PyObject* args); static PyMethodDef arraytestMethods[] = { { "vecsq", vecsq, METH_VARARGS }, |