home *** CD-ROM | disk | FTP | other *** search
- #include <exec/types.h>
- #include <dos/dos.h>
- #include <inline/stubs.h>
- #ifdef __OPTIMIZE__
- #include <inline/exec.h>
- #include <inline/dos.h>
- #else
- #include <clib/exec_protos.h>
- #include <clib/dos_protos.h>
- #endif
- volatile void abort(void);
- LONG FPrintf( BPTR fh, STRPTR format, ... );
-
- void
- __eprintf (string, expression, line, filename)
- char *string;
- char *expression;
- int line;
- char *filename;
- {
- FPrintf(Output(), string, expression, line, filename);
- Flush (Output());
- abort ();
- }