blob: d4229fad92142a9b48b75ae19a24f577dfb7c3d5 [file] [log] [blame]
Chris Lattnercfb81912002-05-20 19:11:23 +00001#include <stdio.h>
2void abort(void);
3
4/* This is used by the `assert' macro. */
5void
6__eprintf (const char *string, const char *expression,
7 unsigned int line, const char *filename)
8{
9 fprintf (stderr, string, expression, line, filename);
10 fflush (stderr);
11 abort ();
12}
13