Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / assert / assert.c
1 /*
2  * assert.c - diagnostics
3  */
4 /* $Id: assert.c,v 1.4 1994/06/24 11:39:03 ceriel Exp $ */
5
6 #include        <assert.h>
7 #include        <stdio.h>
8 #include        <stdlib.h>
9
10 void __bad_assertion(const char *mess) {
11
12         fputs(mess, stderr);
13         abort();
14 }