* include/assert.h; Remove header guard. undef assert macro.

(_assert): Use __MINGW_ATTRIB_NORETURN define.
This commit is contained in:
Danny Smith 2005-02-11 07:17:00 +00:00
parent e2a12d9f7d
commit ecb313ccee
2 changed files with 13 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2005-02-11 Danny Smith <dannysmith@users.sourceforge.net>
* include/assert.h; Remove header guard. #undef assert macro.
(_assert): Use __MINGW_ATTRIB_NORETURN define.
2005-02-11 Gregory W. Chicares <chicares@cox.net> 2005-02-11 Gregory W. Chicares <chicares@cox.net>
Danny Smith <dannysmith@users.sourceforge.net> Danny Smith <dannysmith@users.sourceforge.net>

View File

@ -8,20 +8,22 @@
* *
*/ */
#ifndef _ASSERT_H_ /* We should be able to include this file multiple times to allow the assert
#define _ASSERT_H_ macro to be enabled/disabled for different parts of code. So don't add a
header guard. */
#ifndef RC_INVOKED
/* All the headers include this file. */ /* All the headers include this file. */
#include <_mingw.h> #include <_mingw.h>
#ifndef RC_INVOKED #undef assert
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#ifdef NDEBUG #ifdef NDEBUG
/* /*
* If not debugging, assert does nothing. * If not debugging, assert does nothing.
*/ */
@ -33,16 +35,13 @@ extern "C" {
* CRTDLL nicely supplies a function which does the actual output and * CRTDLL nicely supplies a function which does the actual output and
* call to abort. * call to abort.
*/ */
_CRTIMP void __cdecl _assert (const char*, const char*, int) _CRTIMP void __cdecl _assert (const char*, const char*, int) __MINGW_ATTRIB_NORETURN;
#ifdef __GNUC__
__attribute__ ((noreturn))
#endif
;
/* /*
* Definition of the assert macro. * Definition of the assert macro.
*/ */
#define assert(e) ((e) ? (void)0 : _assert(#e, __FILE__, __LINE__)) #define assert(e) ((e) ? (void)0 : _assert(#e, __FILE__, __LINE__))
#endif /* NDEBUG */ #endif /* NDEBUG */
#ifdef __cplusplus #ifdef __cplusplus
@ -50,6 +49,3 @@ _CRTIMP void __cdecl _assert (const char*, const char*, int)
#endif #endif
#endif /* Not RC_INVOKED */ #endif /* Not RC_INVOKED */
#endif /* Not _ASSERT_H_ */