2018-01-06 07:15:34 +00:00
|
|
|
/* These variables used to be used when Python was built with --with-fpectl,
|
|
|
|
* but support for that was dropped in 3.7. We continue to define them,
|
|
|
|
* though, because they may be referenced by extensions using the stable ABI.
|
1997-02-14 22:58:07 +00:00
|
|
|
*/
|
|
|
|
|
2018-01-06 07:15:34 +00:00
|
|
|
#include "setjmp.h"
|
1998-08-25 17:48:25 +00:00
|
|
|
|
2018-01-06 07:15:34 +00:00
|
|
|
jmp_buf PyFPE_jbuf;
|
|
|
|
int PyFPE_counter;
|
1998-08-25 17:48:25 +00:00
|
|
|
|
|
|
|
double
|
2000-07-22 18:47:25 +00:00
|
|
|
PyFPE_dummy(void *dummy)
|
1998-08-25 17:48:25 +00:00
|
|
|
{
|
2017-11-28 15:56:10 +00:00
|
|
|
return 1.0;
|
1998-08-25 17:48:25 +00:00
|
|
|
}
|