update for HEAD-2003091401
[reactos.git] / lib / msvcrt / misc / assert.c
index 31704ea..0e416a8 100644 (file)
@@ -5,9 +5,13 @@
 #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 */
 }