You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
345 B

  1. /* These variables used to be used when Python was built with --with-fpectl,
  2. * but support for that was dropped in 3.7. We continue to define them,
  3. * though, because they may be referenced by extensions using the stable ABI.
  4. */
  5. #include "setjmp.h"
  6. jmp_buf PyFPE_jbuf;
  7. int PyFPE_counter;
  8. double
  9. PyFPE_dummy(void *dummy)
  10. {
  11. return 1.0;
  12. }