1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
12 void _assert(const char *msg
, const char *file
, unsigned line
)
14 /* Assertion failed at foo.c line 45: x<y */
15 fprintf(stderr
, "Assertion failed at %s line %d: %s\n", file
, line
, msg
);
16 FIXME("Assertion failed at %s line %d: %s\n", file
, line
, msg
);
18 for(;;); /* eliminate warning by mingw */