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.
11 #ifdef WANT_SIGFPE_HANDLER
13 int PyFPE_counter
= 0;
16 /* Have this outside the above #ifdef, since some picky ANSI compilers issue a
17 warning when compiling an empty file. */
20 PyFPE_dummy(void *dummy
)