Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / cython / src / Cython / Includes / libc / setjmp.pxd
blob74d1c59f2d4ef5a2b338f92ae4ad4393849297fd
1 cdef extern from "setjmp.h" nogil:
2     ctypedef struct jmp_buf:
3         pass
4     int setjmp(jmp_buf state)
5     void longjmp(jmp_buf state, int value)