2014-10-14 19:39:26 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
__assert(const char *func, const char *file, int line, const char *expr)
|
|
|
|
{
|
2015-01-03 00:23:53 +00:00
|
|
|
fprintf(stderr, "Assert (%s): %s %s:%d\n", expr, func, file, line);
|
2014-10-14 19:39:26 +00:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|