blob: a2d9671a479e62e1ae500f86801fb1d5f2c7a019 [file] [log] [blame] [raw]
#include <stdio.h>
#ifdef _NO_RTL_ASSERT
#include <stdlib.h>
#else
#include <windows.h>
#include <nt.h>
#endif
#define FORMAT "%s:%d: Assertion `%s' failed."
void _assert(const char *msg, const char *file, int line) {
printf(FORMAT, file, line, msg);
#ifdef _NO_RTL_ASSERT
abort();
#else
RtlAssert(msg, file, line, NULL);
#endif
}