ack/lang/basic/lib/asrt.c
2016-12-12 21:15:25 +01:00

10 lines
115 B
C

#include <stdio.h>
#include <stdlib.h>
void asrt(int b)
{
if(!b){
printf("ASSERTION ERROR\n");
abort();
}
}