Commit 10c301ac by Dave Love Committed by Richard Henderson

libgcc2.c (__eprintf): Make args consistent with prototype in assert.h.

        * libgcc2.c (__eprintf): Make args consistent with prototype in
        assert.h.

From-SVN: r20943
parent 235d853d
Mon Jul 6 09:25:06 1998 Dave Love <d.love@dl.ac.uk>
* libgcc2.c (__eprintf): Make args consistent with prototype in
assert.h.
Mon Jul 6 00:28:43 1998 Mark Mitchell <mark@markmitchell.com> Mon Jul 6 00:28:43 1998 Mark Mitchell <mark@markmitchell.com>
* cse.c (cse_insn): When SETting (MEM (ADDRESSOF (X))) to Y, * cse.c (cse_insn): When SETting (MEM (ADDRESSOF (X))) to Y,
......
...@@ -1405,7 +1405,7 @@ __builtin_saveregs () ...@@ -1405,7 +1405,7 @@ __builtin_saveregs ()
/* This is used by the `assert' macro. */ /* This is used by the `assert' macro. */
void void
__eprintf (const char *string, const char *expression, __eprintf (const char *string, const char *expression,
int line, const char *filename) unsigned int line, const char *filename)
{ {
fprintf (stderr, string, expression, line, filename); fprintf (stderr, string, expression, line, filename);
fflush (stderr); fflush (stderr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment