X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2F_PDCLIB%2Fassert.c;h=8f8791274451ffb28aefab3129ce781e7629bfe3;hb=97dd2fddbdb56005b16a1b0aa19ed15cd77269fc;hp=e3d1a0af2066f3b0482f6bc1c0fab9d6d910415b;hpb=12e17136786afb1775c9dc946cbe41f5e230c24a;p=pdclib.old diff --git a/functions/_PDCLIB/assert.c b/functions/_PDCLIB/assert.c index e3d1a0a..8f87912 100644 --- a/functions/_PDCLIB/assert.c +++ b/functions/_PDCLIB/assert.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* _PDCLIB_assert( char const * ) This file is part of the Public Domain C Library (PDCLib). @@ -14,26 +12,21 @@ #ifndef REGTEST -#ifndef _PDCLIB_AUX_H -#define _PDCLIB_AUX_H _PDCLIB_AUX_H #include <_PDCLIB_aux.h> -#endif -#if _PDCLIB_C_VERSION == 99 -void _PDCLIB_assert( char const * const message1, char const * const function, char const * const message2 ) +void _PDCLIB_assert99( char const * const message1, char const * const function, char const * const message2 ) { fputs( message1, stderr ); fputs( function, stderr ); fputs( message2, stderr ); abort(); } -#else -void _PDCLIB_assert( char const * const message ) + +void _PDCLIB_assert89( char const * const message ) { fputs( message, stderr ); abort(); } -#endif #endif @@ -47,7 +40,7 @@ static int UNEXPECTED_ABORT = 1; static void aborthandler( int sig ) { TESTCASE( ! EXPECTED_ABORT ); - exit( (signed int)rc ); + exit( (signed int)TEST_RESULTS ); } #define NDEBUG