test-kivy-app/kivy_venv/lib/python3.11/site-packages/Cython/Includes/libc/setjmp.pxd
2024-09-15 15:12:16 +03:00

11 lines
297 B
Cython

cdef extern from "<setjmp.h>" nogil:
ctypedef struct jmp_buf:
pass
int setjmp(jmp_buf state)
void longjmp(jmp_buf state, int value)
ctypedef struct sigjmp_buf:
pass
int sigsetjmp(sigjmp_buf state, int savesigs)
void siglongjmp(sigjmp_buf state, int value)