mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)
This commit is contained in:
parent
1de60155d5
commit
a6ca8eee22
14 changed files with 90 additions and 14 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue