pyo3/python3-sys/src/intrcheck.rs

9 lines
155 B
Rust
Raw Normal View History

2015-04-26 08:32:58 +00:00
use libc::c_int;
extern "C" {
pub fn PyOS_InterruptOccurred() -> c_int;
pub fn PyOS_InitInterrupts() -> ();
pub fn PyOS_AfterFork() -> ();
}