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
|
|
|
{
|
2016-12-12 20:16:32 +00:00
|
|
|
if (!b)
|
|
|
|
{
|
1984-11-29 14:22:02 +00:00
|
|
|
printf("ASSERTION ERROR\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|