ack/lang/basic/lib/asrt.c
1984-11-29 14:22:02 +00:00

10 lines
83 B
C

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