diff options
Diffstat (limited to 'Python/pyfpe.c')
-rw-r--r-- | Python/pyfpe.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Python/pyfpe.c b/Python/pyfpe.c index 31ef5d73b70..9b1260f687a 100644 --- a/Python/pyfpe.c +++ b/Python/pyfpe.c @@ -3,9 +3,12 @@ * though, because they may be referenced by extensions using the stable ABI. */ -#include "setjmp.h" +#ifdef HAVE_SETJMP_H +#include <setjmp.h> jmp_buf PyFPE_jbuf; +#endif + int PyFPE_counter; double |