X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fassert.h;h=fb6dbf1b1b63a5118cf523c3f2c6567b953b580f;hb=be35e77c0d824e5bd545620ca81c812f9e16f0e5;hp=d5d61ecc606b5c8a1bef80faab2ac6e1c8691f6a;hpb=a0ae3ba6bb30efbbb64425898343987f07dceb2d;p=pdclib.old 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