summaryrefslogtreecommitdiff
path: root/include/python2.7/intrcheck.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/python2.7/intrcheck.h')
-rw-r--r--include/python2.7/intrcheck.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/python2.7/intrcheck.h b/include/python2.7/intrcheck.h
new file mode 100644
index 0000000..3b67ed0
--- /dev/null
+++ b/include/python2.7/intrcheck.h
@@ -0,0 +1,15 @@
+
+#ifndef Py_INTRCHECK_H
+#define Py_INTRCHECK_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
+PyAPI_FUNC(void) PyOS_InitInterrupts(void);
+PyAPI_FUNC(void) PyOS_AfterFork(void);
+
+#ifdef __cplusplus
+}
+#endif
+#endif /* !Py_INTRCHECK_H */