diff options
-rw-r--r-- | numpy/core/include/numpy/ufuncobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/include/numpy/ufuncobject.h b/numpy/core/include/numpy/ufuncobject.h index 75611426c..8df96a44f 100644 --- a/numpy/core/include/numpy/ufuncobject.h +++ b/numpy/core/include/numpy/ufuncobject.h @@ -212,7 +212,7 @@ typedef struct _tagPyUFuncObject { * A function which returns a masked inner loop for the ufunc. */ PyUFunc_MaskedInnerLoopSelectionFunc *masked_inner_loop_selector; - + /* * List of flags for each operand when ufunc is called by nditer object. * These flags will be used in addition to the default flags for each @@ -406,7 +406,7 @@ typedef struct _loop1d_info { defined(__MINGW32__) || defined(__FreeBSD__) #include <fenv.h> #elif defined(__CYGWIN__) -#include "fenv/fenv.c" +#include "numpy/fenv/fenv.h" #endif #define UFUNC_CHECK_STATUS(ret) { \ |