| /** | |
| * This file has no copyright assigned and is placed in the Public Domain. | |
| * This file is part of the w64 mingw-runtime package. | |
| * No warranty is given; refer to the file DISCLAIMER within this package. | |
| */ | |
| extern "C" { | |
| typedef int sig_atomic_t; | |
| typedef void (*__p_sig_fn_t)(int); | |
| extern void **__cdecl __pxcptinfoptrs(void); | |
| __p_sig_fn_t __cdecl signal(int _SigNum,__p_sig_fn_t _Func); | |
| int __cdecl raise(int _SigNum); | |
| } | |