summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2008-11-22 06:32:40 +0000
committerCharles Harris <charlesr.harris@gmail.com>2008-11-22 06:32:40 +0000
commita0d20a59b6cbabd60ec351d019c3bcd48df98398 (patch)
tree0c17f06919ea8e8ba18504da7ca972edc9b2309b
parent9ac837ab78701e0fdaf62df60a702e25b66c6d0e (diff)
downloadnumpy-a0d20a59b6cbabd60ec351d019c3bcd48df98398.tar.gz
Change order of includes to see if it matters on SPARC Etch buildbot.
-rw-r--r--numpy/core/src/umathmodule.c.src4
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>
/*
*****************************************************************************