Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6429 siemargl 1
/**
2
 * This file has no copyright assigned and is placed in the Public Domain.
3
 * This file is part of the w64 mingw-runtime package.
4
 * No warranty is given; refer to the file DISCLAIMER within this package.
5
 */
6
#ifndef __ASSERT_H_
7
#define __ASSERT_H_
8
 
9
#include <_mingw.h>
10
#ifdef __cplusplus
11
#include 
12
#endif
13
 
14
#ifdef NDEBUG
15
#ifndef assert
16
#define assert(_Expression) ((void)0)
17
#endif
18
#else
19
 
20
#ifndef _CRT_TERMINATE_DEFINED
21
#define _CRT_TERMINATE_DEFINED
22
  void __cdecl __MINGW_NOTHROW exit(int _Code) __MINGW_ATTRIB_NORETURN;
23
 _CRTIMP void __cdecl __MINGW_NOTHROW _exit(int _Code) __MINGW_ATTRIB_NORETURN;
24
#if !defined __NO_ISOCEXT /* extern stub in static libmingwex.a */
25
/* C99 function name */
26
void __cdecl _Exit(int) __MINGW_ATTRIB_NORETURN;
27
__CRT_INLINE __MINGW_ATTRIB_NORETURN void __cdecl _Exit(int status)
28
{  _exit(status); }
29
#endif
30
 
31
#pragma push_macro("abort")
32
#undef abort
33
  void __cdecl __declspec(noreturn) abort(void);
34
#pragma pop_macro("abort")
35
 
36
#endif
37
 
38
#ifdef __cplusplus
39
extern "C" {
40
#endif
41
 
42
extern void __cdecl _wassert(const wchar_t *_Message,const wchar_t *_File,unsigned _Line);
43
 
44
#ifdef __cplusplus
45
}
46
#endif
47
 
48
#ifndef assert
49
#define assert(_Expression) (void)((!!(_Expression)) || (_wassert(_CRT_WIDE(#_Expression),_CRT_WIDE(__FILE__),__LINE__),0))
50
#endif
51
 
52
#endif
53
 
54
#endif