ack/lang/basic/lib/asrt.c
1994-06-24 11:31:16 +00:00

10 lines
78 B
C

/* $Id$ */
asrt(b)
{
if(!b){
printf("ASSERTION ERROR\n");
abort();
}
}