mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 19:52:59 +00:00
Fix build, sorry. Thanks Timo.
svn path=/trunk/; revision=48080
This commit is contained in:
parent
e6d5126886
commit
386c15f491
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
#include <precomp.h>
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -12,7 +13,7 @@ void _assert(const char *msg, const char *file, unsigned line)
|
||||||
{
|
{
|
||||||
/* Assertion failed at foo.c line 45: x<y */
|
/* Assertion failed at foo.c line 45: x<y */
|
||||||
fprintf(stderr, "Assertion failed at %s line %d: %s\n", file, line, msg);
|
fprintf(stderr, "Assertion failed at %s line %d: %s\n", file, line, msg);
|
||||||
DPRINT1("Assertion failed at %s line %d: %s\n", file, line, msg);
|
FIXME("Assertion failed at %s line %d: %s\n", file, line, msg);
|
||||||
raise(SIGABRT);
|
raise(SIGABRT);
|
||||||
for(;;); /* eliminate warning by mingw */
|
for(;;); /* eliminate warning by mingw */
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue