16 lines
181 B
C
16 lines
181 B
C
/*
|
|
* assert.c - diagnostics
|
|
*/
|
|
/* $Id$ */
|
|
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
void __bad_assertion(const char* mess)
|
|
{
|
|
|
|
fputs(mess, stderr);
|
|
abort();
|
|
}
|