#include <stdio.h>#include <stdlib.h>
Go to the source code of this file.
Functions | |
| void | __eprintf (const char *fmt, const char *expr, int line, const char *file) |
A replacement for the version of __eprintf in libgcc.a if libgcc.a is missing. This may be needed to prevent some errors in linking Solaris cc with standard gcc. In this code, this is needed with sqlite is compiled with gcc, then the rest of the code is compiled with Solaris cc.
Definition in file eprintf.c.
| void __eprintf | ( | const char * | fmt, | |
| const char * | expr, | |||
| int | line, | |||
| const char * | file | |||
| ) |
Print to stderr and abort.
| fmt | -- print format specifier (as with printf) | |
| expr | -- string to print | |
| line | -- line number | |
| file | -- file name |
Definition at line 32 of file eprintf.c.
{
fprintf (stderr, fmt, expr, line, file);
fflush (stderr);
abort ();
}

1.6.3-20100507