Staging
v0.5.1
https://github.com/python/cpython
Revision 419670dc6017b5b463c88b08b4855aa7c9d396a3 authored by Tim Peters on 06 September 2001, 22:07:50 UTC, committed by Tim Peters on 06 September 2001, 22:07:50 UTC
1 parent 4bd810a
Raw File
Tip revision: 419670dc6017b5b463c88b08b4855aa7c9d396a3 authored by Tim Peters on 06 September 2001, 22:07:50 UTC
Rewrite to use test_support's fine fcmp instead -- I didn't know that
Tip revision: 419670d
intrcheck.h

#ifndef Py_INTRCHECK_H
#define Py_INTRCHECK_H
#ifdef __cplusplus
extern "C" {
#endif

extern DL_IMPORT(int) PyOS_InterruptOccurred(void);
extern DL_IMPORT(void) PyOS_InitInterrupts(void);
DL_IMPORT(void) PyOS_AfterFork(void);

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTRCHECK_H */
back to top