summaryrefslogtreecommitdiff
path: root/Tests/FindPython/NumPy/arraytest.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/FindPython/NumPy/arraytest.c')
-rw-r--r--Tests/FindPython/NumPy/arraytest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/FindPython/NumPy/arraytest.c b/Tests/FindPython/NumPy/arraytest.c
index db259e55a..51db7bc34 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 },