llvm-6502/runtime/GCCLibraries/libgcc/eprintf.c
2002-05-20 19:11:23 +00:00

14 lines
285 B
C

#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 ();
}