Staging
v0.5.1
https://github.com/python/cpython
Revision 9460648547f10d8b2ffd561975a30d14ba574f43 authored by Georg Brandl on 04 May 2009, 20:46:44 UTC, committed by Georg Brandl on 04 May 2009, 20:46:44 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72290 | georg.brandl | 2009-05-04 22:45:13 +0200 (Mo, 04 Mai 2009) | 1 line

  #5927, 5928: typos.
........
1 parent 17761d1
Raw File
Tip revision: 9460648547f10d8b2ffd561975a30d14ba574f43 authored by Georg Brandl on 04 May 2009, 20:46:44 UTC
Merged revisions 72290 via svnmerge from
Tip revision: 9460648
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