Staging
v0.8.1
https://github.com/python/cpython
Revision 8dd547f6898738d87781bbf2fcbf9abbfc8a10f4 authored by Ezio Melotti on 27 February 2010, 13:50:35 UTC, committed by Ezio Melotti on 27 February 2010, 13:50:35 UTC
1 parent 2a903b2
Raw File
Tip revision: 8dd547f6898738d87781bbf2fcbf9abbfc8a10f4 authored by Ezio Melotti on 27 February 2010, 13:50:35 UTC
Fix missing parenthesis.
Tip revision: 8dd547f
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