From: Guido van Rossum Date: Fri, 14 Mar 1997 04:32:25 +0000 (+0000) Subject: Include setjmp.h so it compiles if WANT_SIGFPE_HANDLER is undefined. X-Git-Tag: v1.5a1~280 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1aeb1047baa41af14e720f74f30d288417f1122e;p=thirdparty%2FPython%2Fcpython.git Include setjmp.h so it compiles if WANT_SIGFPE_HANDLER is undefined. --- diff --git a/Modules/fpectlmodule.c b/Modules/fpectlmodule.c index 3fc5d06d24ab..9fcc462c24ca 100644 --- a/Modules/fpectlmodule.c +++ b/Modules/fpectlmodule.c @@ -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 static jmp_buf PyFPE_jbuf; static int PyFPE_counter = 0; #endif