1 /**
2   Mirror _intrcheck.h
3   */
4 module deimos.python.intrcheck;
5 
6 extern(C):
7 // Python-header-file: Include/intrcheck.h:
8 
9 /// _
10 int PyOS_InterruptOccurred();
11 /// _
12 void PyOS_InitInterrupts();
13 /// _
14 void PyOS_AfterFork();
15 
16