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