Commit bba2431c by Richard Stallman

(__eprintf): Do nothing if inhibit_eprintf is defined.

From-SVN: r2289
parent 82c14fc8
...@@ -1149,6 +1149,8 @@ __builtin_saveregs () ...@@ -1149,6 +1149,8 @@ __builtin_saveregs ()
#endif #endif
#ifdef L_eprintf #ifdef L_eprintf
#ifndef inhibit_eprintf
#undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch. */ #undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch. */
#include <stdio.h> #include <stdio.h>
/* This is used by the `assert' macro. */ /* This is used by the `assert' macro. */
...@@ -1163,6 +1165,8 @@ __eprintf (string, expression, line, filename) ...@@ -1163,6 +1165,8 @@ __eprintf (string, expression, line, filename)
fflush (stderr); fflush (stderr);
abort (); abort ();
} }
#endif
#endif #endif
#ifdef L_bb #ifdef L_bb
......
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