diff options
-rw-r--r-- | numpy/core/src/multiarraymodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/core/src/multiarraymodule.c b/numpy/core/src/multiarraymodule.c index b8ceb8743..d680671c3 100644 --- a/numpy/core/src/multiarraymodule.c +++ b/numpy/core/src/multiarraymodule.c @@ -81,6 +81,10 @@ _arraydescr_fromobj(PyObject *obj) return NULL; } +/* XXX: We include c99 compat math module here because it is needed for + * numpyos.c (included by arrayobject). This is bad - we should separate + * declaration/implementation and share this in a lib. */ +#include "umath_funcs_c99.inc" /* Including this file is the only way I know how to declare functions static in each file, and store the pointers from functions in both |