blob: 6284c636bd84971a467f08bf49d0a59a4365c83c [file] [log] [blame]
Guido van Rossum0ae748d1997-02-14 22:58:07 +00001#include "config.h"
2#include "pyfpe.h"
Guido van Rossum0ae748d1997-02-14 22:58:07 +00003/*
4 * The signal handler for SIGFPE is actually declared in an external
5 * module fpectl, or as preferred by the user. These variable
6 * definitions are required in order to compile Python without
7 * getting missing externals, but to actually handle SIGFPE requires
8 * defining a handler and enabling generation of SIGFPE.
9 */
10
11#ifdef WANT_SIGFPE_HANDLER
12jmp_buf PyFPE_jbuf;
13int PyFPE_counter = 0;
Guido van Rossum1a8791e1998-08-04 22:46:29 +000014#endif
Guido van Rossumd0dc5b01998-08-25 17:48:25 +000015
16/* Have this outside the above #ifdef, since some picky ANSI compilers issue a
17 warning when compiling an empty file. */
18
19double
20PyFPE_dummy(dummy)
21 void *dummy;
22{
23 return 1.0;
24}