10 lines
78 B
C
10 lines
78 B
C
/* $Id$ */
|
|
|
|
asrt(b)
|
|
{
|
|
if(!b){
|
|
printf("ASSERTION ERROR\n");
|
|
abort();
|
|
}
|
|
}
|