ack/lang/basic/lib/asrt.c

11 lines
115 B
C
Raw Normal View History

2016-12-12 20:15:25 +00:00
#include <stdio.h>
#include <stdlib.h>
1984-11-29 14:22:02 +00:00
2016-12-12 20:15:25 +00:00
void asrt(int b)
1984-11-29 14:22:02 +00:00
{
if(!b){
printf("ASSERTION ERROR\n");
abort();
}
}