From eebd7b2c64560ed3378f4b86413b0acaebaa9171 Mon Sep 17 00:00:00 2001 From: "Nathaniel J. Smith" Date: Wed, 18 Jul 2012 21:20:27 +0100 Subject: [PATCH] [FIX] Add missing header so separate compilation works again (Broken by PR #350.) Should be applied to maintenance/1.7.x as well. --- numpy/core/src/multiarray/mapping.c | 1 + 1 file changed, 1 insertion(+) diff --git a/numpy/core/src/multiarray/mapping.c b/numpy/core/src/multiarray/mapping.c index 663a3ef7f509..d414a1fbb109 100644 --- a/numpy/core/src/multiarray/mapping.c +++ b/numpy/core/src/multiarray/mapping.c @@ -6,6 +6,7 @@ #define NPY_NO_DEPRECATED_API NPY_API_VERSION #define _MULTIARRAYMODULE #include "numpy/arrayobject.h" +#include "arrayobject.h" #include "npy_config.h"