| /** | |
| * 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. | |
| */ | |
| void __cdecl __MINGW_NOTHROW exit(int _Code) __MINGW_ATTRIB_NORETURN; | |
| _CRTIMP void __cdecl __MINGW_NOTHROW _exit(int _Code) __MINGW_ATTRIB_NORETURN; | |
| /* C99 function name */ | |
| void __cdecl _Exit(int) __MINGW_ATTRIB_NORETURN; | |
| __CRT_INLINE __MINGW_ATTRIB_NORETURN void __cdecl _Exit(int status) | |
| { _exit(status); } | |
| void __cdecl __declspec(noreturn) abort(void); | |
| extern "C" { | |
| extern void __cdecl _wassert(const wchar_t *_Message,const wchar_t *_File,unsigned _Line); | |
| extern void __cdecl _assert(const char *, const char *, unsigned); | |
| } | |
| //#define assert(_Expression) (void)((!!(_Expression)) || (_wassert(_CRT_WIDE(#_Expression),_CRT_WIDE(__FILE__),__LINE__),0)) | |