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

12 lines
118 B
C

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