Author: tkreuzer
Date: Fri Jul 16 15:08:03 2010
New Revision: 48082
URL:
http://svn.reactos.org/svn/reactos?rev=48082&view=rev
Log:
[CRT]
Move #include <precomp.h> to the top, as precompiled headers must be the first thing
that is included or it won't take advantage of being precompiled
Modified:
trunk/reactos/lib/sdk/crt/misc/assert.c
Modified: trunk/reactos/lib/sdk/crt/misc/assert.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/misc/assert.c?…
==============================================================================
--- trunk/reactos/lib/sdk/crt/misc/assert.c [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/misc/assert.c [iso-8859-1] Fri Jul 16 15:08:03 2010
@@ -1,9 +1,9 @@
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
+#include <precomp.h>
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
-#include <precomp.h>
/*