ack/lang/basic/lib/asrt.c

10 lines
82 B
C

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