Honor CC when testing for -Wno-unused-result
[tinycc.git] / win32 / include / assert.h
blobc1678a37480344b75c396d2f1d9990fba4b6d3e4
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_
9 #include <_mingw.h>
10 #ifdef __cplusplus
11 #include <stdlib.h>
12 #endif
14 #ifdef NDEBUG
15 #ifndef assert
16 #define assert(_Expression) ((void)0)
17 #endif
18 #else
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
31 #pragma push_macro("abort")
32 #undef abort
33 void __cdecl __declspec(noreturn) abort(void);
34 #pragma pop_macro("abort")
36 #endif
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
42 extern void __cdecl _wassert(const wchar_t *_Message,const wchar_t *_File,unsigned _Line);
44 #ifdef __cplusplus
46 #endif
48 #ifndef assert
49 #define assert(_Expression) (void)((!!(_Expression)) || (_wassert(_CRT_WIDE(#_Expression),_CRT_WIDE(__FILE__),__LINE__),0))
50 #endif
52 #endif
54 #endif