1#include <tcl.h>
2#include <stdio.h>
3
4/* This is used by the `assert' macro.  */
5void
6__eprintf (string, expression, line, filename)
7     CONST char *string;
8     CONST char *expression;
9     int line;
10     CONST char *filename;
11{
12  fprintf (stderr, string, expression, line, filename);
13  fflush (stderr);
14  abort ();
15}
16
17