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