blob: d4229fad92142a9b48b75ae19a24f577dfb7c3d5 [file] [log] [blame]
#include <stdio.h>
void abort(void);
/* This is used by the `assert' macro. */
void
__eprintf (const char *string, const char *expression,
unsigned int line, const char *filename)
{
fprintf (stderr, string, expression, line, filename);
fflush (stderr);
abort ();
}