python3-sys 0.1.0

FFI Declarations for Python 3
Documentation
1
2
3
4
5
6
7
8
use libc::c_int;

extern "C" {
    pub fn PyOS_InterruptOccurred() -> c_int;
    pub fn PyOS_InitInterrupts() -> ();
    pub fn PyOS_AfterFork() -> ();
}