X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fassert.h;h=fb6dbf1b1b63a5118cf523c3f2c6567b953b580f;hb=393020b6e48719d27699dea6b29e53025bbd5123;hp=d5d61ecc606b5c8a1bef80faab2ac6e1c8691f6a;hpb=4c805021b487dff9bfc6341c998ba99636416ae7;p=pdclib diff --git a/includes/assert.h b/includes/assert.h index d5d61ec..fb6dbf1 100644 --- a/includes/assert.h +++ b/includes/assert.h @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* 7.2 Diagnostics This file is part of the Public Domain C Library (PDCLib). @@ -37,15 +35,15 @@ void _PDCLIB_assert( char const * const ); #define assert( expression ) ( ( expression ) ? (void) 0 \ : _PDCLIB_assert( "Assertion failed: " #expression \ ", function ", __func__, \ - ", file " __FILE__ \ - ", line " _PDCLIB_symbol2string( __LINE__ ) \ - "." _PDCLIB_endl ) ) + ", file " __FILE__ \ + ", line " _PDCLIB_symbol2string( __LINE__ ) \ + "." _PDCLIB_endl ) ) #else #define assert( expression ) ( ( expression ) ? (void) 0 \ - : _PDCLIB_assert( "Assertion failed: " #expression \ - ", file " __FILE__ \ - ", line " _PDCLIB_symbol2string( __LINE__ ) \ - "." _PDCLIB_endl ) ) + : _PDCLIB_assert( "Assertion failed: " #expression \ + ", file " __FILE__ \ + ", line " _PDCLIB_symbol2string( __LINE__ ) \ + "." _PDCLIB_endl ) ) #endif #endif