Staging
v0.5.1
https://github.com/python/cpython
Revision b398d2c2bf710412556cf5ad716e4fc98a7cb7ab authored by Martin Panter on 01 December 2016, 01:32:16 UTC, committed by Martin Panter on 01 December 2016, 01:32:16 UTC
1 parent ed82604
Raw File
Tip revision: b398d2c2bf710412556cf5ad716e4fc98a7cb7ab authored by Martin Panter on 01 December 2016, 01:32:16 UTC
Issue #28771: Correct documentation of signatures using const
Tip revision: b398d2c
intrcheck.h

#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 */
back to top