9 lines
86 B
C
9 lines
86 B
C
#include "assert.h"
|
|
#include <stdlib.h>
|
|
|
|
void assert(bool b)
|
|
{
|
|
if (!b)
|
|
exit(-1);
|
|
}
|