Index: third_party/cython/src/Cython/Includes/libc/setjmp.pxd |
diff --git a/third_party/cython/src/Cython/Includes/libc/setjmp.pxd b/third_party/cython/src/Cython/Includes/libc/setjmp.pxd |
new file mode 100644 |
index 0000000000000000000000000000000000000000..74d1c59f2d4ef5a2b338f92ae4ad4393849297fd |
--- /dev/null |
+++ b/third_party/cython/src/Cython/Includes/libc/setjmp.pxd |
@@ -0,0 +1,5 @@ |
+cdef extern from "setjmp.h" nogil: |
+ ctypedef struct jmp_buf: |
+ pass |
+ int setjmp(jmp_buf state) |
+ void longjmp(jmp_buf state, int value) |