1989-05-10 10:43:58 +00:00
|
|
|
/*
|
|
|
|
* assert.c - diagnostics
|
|
|
|
*/
|
|
|
|
/* $Header$ */
|
|
|
|
|
1989-12-18 14:44:38 +00:00
|
|
|
#include <assert.h>
|
1989-05-10 10:43:58 +00:00
|
|
|
#include <stdio.h>
|
1989-12-18 14:44:38 +00:00
|
|
|
#include <stdlib.h>
|
1989-05-10 10:43:58 +00:00
|
|
|
|
1989-12-18 14:44:38 +00:00
|
|
|
void __bad_assertion(const char *expr, const char *file, int line) {
|
1989-05-10 10:43:58 +00:00
|
|
|
|
|
|
|
fprintf(stderr,"Assertion \"%s\" failed, file \"%s\", line %d\n",
|
|
|
|
expr, file, line);
|
1989-12-18 14:44:38 +00:00
|
|
|
abort();
|
1989-05-10 10:43:58 +00:00
|
|
|
}
|