ack/lang/basic/lib/asrt.c
2018-06-24 00:35:51 +02:00

13 lines
135 B
C

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