]> granicus.if.org Git - python/commitdiff
Include setjmp.h so it compiles if WANT_SIGFPE_HANDLER is undefined.
authorGuido van Rossum <guido@python.org>
Fri, 14 Mar 1997 04:32:25 +0000 (04:32 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 14 Mar 1997 04:32:25 +0000 (04:32 +0000)
Modules/fpectlmodule.c

index 3fc5d06d24ab9325ed058ed06da88ecc2491eb8a..9fcc462c24ca3597e03277ff00862d925d95145f 100644 (file)
@@ -72,6 +72,7 @@ extern "C" {
 /* Define locally if they are not defined in Python.  This gives only
  * the limited control to induce a core dump in case of an exception.
  */
+#include <setjmp.h>
 static jmp_buf PyFPE_jbuf;
 static int PyFPE_counter = 0;
 #endif