update for HEAD-2003091401
[reactos.git] / lib / msvcrt / misc / assert.c
index 59b3bbd..0e416a8 100644 (file)
@@ -4,9 +4,14 @@
 #include <msvcrt/stdlib.h>
 #include <msvcrt/signal.h>
 
+
+/*
+ * @implemented
+ */
 void _assert(const char *msg, const char *file, int line)
 {
   /* Assertion failed at foo.c line 45: x<y */
   fprintf(stderr, "Assertion failed at %s line %d: %s\n", file, line, msg);
   raise(SIGABRT);
+  for(;;); /* eliminate warning by mingw */
 }