mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:02:56 +00:00
Sync with trunk (r48123)
svn path=/branches/reactos-yarotows/; revision=48145
This commit is contained in:
commit
eaa1cb5487
115 changed files with 7723 additions and 978 deletions
|
@ -1,4 +1,5 @@
|
|||
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
||||
#include <precomp.h>
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -12,6 +13,7 @@ void _assert(const char *msg, const char *file, unsigned line)
|
|||
{
|
||||
/* Assertion failed at foo.c line 45: x<y */
|
||||
fprintf(stderr, "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);
|
||||
for(;;); /* eliminate warning by mingw */
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue