diff options
author | Travis Oliphant <oliphant@enthought.com> | 2007-01-25 17:10:33 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2007-01-25 17:10:33 +0000 |
commit | 29c5d911e6e0193b0e20e6b2383e01df685df89d (patch) | |
tree | 3705d4f81213ee9b616af3ff0aff63310bed6253 /numpy/numarray | |
parent | bdb43053e6cd090f3fd95e4cbfc82e70ee07c582 (diff) | |
download | numpy-29c5d911e6e0193b0e20e6b2383e01df685df89d.tar.gz |
Fix include directory for fenv.c
Diffstat (limited to 'numpy/numarray')
-rw-r--r-- | numpy/numarray/_capi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/numarray/_capi.c b/numpy/numarray/_capi.c index 50d75fbea..4135e534f 100644 --- a/numpy/numarray/_capi.c +++ b/numpy/numarray/_capi.c @@ -2938,7 +2938,7 @@ NA_checkFPErrors(void) #if defined(__GLIBC__) || defined(darwin) || defined(__MINGW32__) #include <fenv.h> #elif defined(__CYGWIN__) -#include "fenv/fenv.c" +#include "numpy/fenv/fenv.c" #endif static int |