#ifndef Py_INTERNAL_SIGNAL_H
#define Py_INTERNAL_SIGNAL_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef Py_BUILD_CORE
# error "this header requires Py_BUILD_CORE define"
#endif
#include <signal.h>
PyAPI_FUNC(void) _Py_RestoreSignals(void);
#ifdef _SIG_MAXSIG
#define Py_NSIG …
#elif defined(NSIG)
#define Py_NSIG …
#elif defined(_NSIG)
#define Py_NSIG …
#elif defined(_SIGMAX)
#define Py_NSIG …
#elif defined(SIGMAX)
#define Py_NSIG …
#else
#define Py_NSIG …
#endif
#define INVALID_FD …
struct _signals_runtime_state { … };
#ifdef MS_WINDOWS
#define _signals_WAKEUP_INIT …
#else
#define _signals_WAKEUP_INIT …
#endif
#define _signals_RUNTIME_INIT …
PyAPI_FUNC(int) _PyOS_IsMainThread(void);
#ifdef MS_WINDOWS
PyAPI_FUNC(void*) _PyOS_SigintEvent(void);
#endif
#ifdef __cplusplus
}
#endif
#endif