[Numpy-svn] r3348 - trunk/numpy/core/src

numpy-svn at scipy.org numpy-svn at scipy.org
Tue Oct 17 12:07:43 EDT 2006


Author: oliphant
Date: 2006-10-17 11:07:42 -0500 (Tue, 17 Oct 2006)
New Revision: 3348

Modified:
   trunk/numpy/core/src/multiarraymodule.c
Log:
include <signal.h> when trying check for SIGSEGV

Modified: trunk/numpy/core/src/multiarraymodule.c
===================================================================
--- trunk/numpy/core/src/multiarraymodule.c	2006-10-17 16:01:37 UTC (rev 3347)
+++ trunk/numpy/core/src/multiarraymodule.c	2006-10-17 16:07:42 UTC (rev 3348)
@@ -6578,6 +6578,7 @@
 
 #ifndef _MSC_VER
 #include <setjmp.h>
+#include <signal.h>
 jmp_buf _NPY_SIGSEGV_BUF;
 static void
 _SigSegv_Handler(int signum)




More information about the Numpy-svn mailing list