diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-10-17 16:07:42 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-10-17 16:07:42 +0000 |
commit | cf7a96e9c975a1a71d4d6737b84b80cc202328fc (patch) | |
tree | 9fefce366e1b9315659e3f76316c2fb31d6d2601 /numpy/core/src | |
parent | 1e263c23dcc07d6943540a770f2a582857987df3 (diff) | |
download | numpy-cf7a96e9c975a1a71d4d6737b84b80cc202328fc.tar.gz |
include <signal.h> when trying check for SIGSEGV
Diffstat (limited to 'numpy/core/src')
-rw-r--r-- | numpy/core/src/multiarraymodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/src/multiarraymodule.c b/numpy/core/src/multiarraymodule.c index aef8ca3ab..0472c8596 100644 --- a/numpy/core/src/multiarraymodule.c +++ b/numpy/core/src/multiarraymodule.c @@ -6578,6 +6578,7 @@ buffer_buffer(PyObject *dummy, PyObject *args, PyObject *kwds) #ifndef _MSC_VER #include <setjmp.h> +#include <signal.h> jmp_buf _NPY_SIGSEGV_BUF; static void _SigSegv_Handler(int signum) |