mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
69f8e162eb
llvm-svn: 2666
14 lines
285 B
C
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 ();
|
|
}
|
|
|