diff options
-rw-r--r-- | numpy/core/src/umathmodule.c.src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/src/umathmodule.c.src b/numpy/core/src/umathmodule.c.src index 8ac518d4a..0d73e0b61 100644 --- a/numpy/core/src/umathmodule.c.src +++ b/numpy/core/src/umathmodule.c.src @@ -9,13 +9,13 @@ ** INCLUDES ** ***************************************************************************** */ -#define _UMATHMODULE /* needed in one of the numpy include files */ -#include <math.h> #include "Python.h" #include "numpy/noprefix.h" +#define _UMATHMODULE /* needed in one of the numpy include files */ #include "numpy/ufuncobject.h" #include "abstract.h" #include "config.h" +#include <math.h> /* ***************************************************************************** |