Sync with trunk (r48123)

svn path=/branches/reactos-yarotows/; revision=48145
This commit is contained in:
Jérôme Gardou 2010-07-20 20:09:43 +00:00
commit eaa1cb5487
115 changed files with 7723 additions and 978 deletions

View file

@ -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 */
}