X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2F_PDCLIB%2Fassert.c;h=fb3d24bfb1260219dbc401b77c6418e5df933b6f;hb=9f87d9e27e74d9e06e0c93114ffd70a45ee152fa;hp=e3d1a0af2066f3b0482f6bc1c0fab9d6d910415b;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;p=pdclib diff --git a/functions/_PDCLIB/assert.c b/functions/_PDCLIB/assert.c index e3d1a0a..fb3d24b 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,10 +12,7 @@ #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 ) @@ -47,7 +42,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