Fix build, sorry. Thanks Timo.
[reactos.git] / reactos / lib / sdk / crt / misc / assert.c
index f656976..fff5ac1 100644 (file)
@@ -3,15 +3,17 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <signal.h>
+#include <precomp.h>
 
 
 /*
  * @implemented
  */
-void _assert(const char *msg, const char *file, int line)
+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 */
 }