X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fassert.c;h=3e887d9360c6cd5326cff65d11d085f032cff212;hp=37213474d42d947ffb8780a69bca4d1672966e44;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hpb=ee501259d6266addff197d09ce1f15b966d8e814 diff --git a/functions/assert.c b/functions/assert.c index 3721347..3e887d9 100644 --- a/functions/assert.c +++ b/functions/assert.c @@ -1,15 +1,15 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- +/* ---------------------------------------------------------------------------- + * $Id$ + * ---------------------------------------------------------------------------- + * Public Domain C Library - http://pdclib.sourceforge.net + * This code is Public Domain. Use, modify, and redistribute at will. + * --------------------------------------------------------------------------*/ #include #include __assert( char const * const expression, char const * const file, - char const * const function, int const line ) + char const * const function, int const line ) { fprintf(stderr, "Assertion failed: %s, function %s, file %s, line %d.\n", expression, function, file, line );