X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fassert.c;h=31c43866e56bb5765df0bdf54da7f69372d217ba;hb=a0ae3ba6bb30efbbb64425898343987f07dceb2d;hp=3e887d9360c6cd5326cff65d11d085f032cff212;hpb=c8f799d852e3698468a78954d82588e841cc0b70;p=pdclib.old diff --git a/functions/assert.c b/functions/assert.c index 3e887d9..31c4386 100644 --- a/functions/assert.c +++ b/functions/assert.c @@ -1,17 +1,27 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * --------------------------------------------------------------------------*/ +/* _PDCLIB_assert( char * ) + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ -#include #include +#include + +#include <_PDCLIB_aux.h> -__assert( char const * const expression, char const * const file, - char const * const function, int const line ) +#if _PDCLIB_C_VERSION == 99 +void _PDCLIB_assert( char const * const message1, char const * const function, char const * const message2 ) { - fprintf(stderr, "Assertion failed: %s, function %s, file %s, line %d.\n", - expression, function, file, line ); + fputs( message1, stderr ); + fputs( function, stderr ); + fputs( message2, stderr ); abort(); } +#else +void _PDCLIB_assert( char const * const message ) +{ + fputs( message, stderr ); + abort(); +} +#endif +