From: Richard Stallman Date: Thu, 1 Oct 1992 03:34:27 +0000 (+0000) Subject: (__eprintf): Do nothing if inhibit_eprintf is defined. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bba2431c5d74a2933fb73b718ccbc9c4f6f4c802;p=gcc.git (__eprintf): Do nothing if inhibit_eprintf is defined. From-SVN: r2289 --- diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 00c3909d196..2442b2d1054 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -1149,6 +1149,8 @@ __builtin_saveregs () #endif #ifdef L_eprintf +#ifndef inhibit_eprintf + #undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch. */ #include /* This is used by the `assert' macro. */ @@ -1163,6 +1165,8 @@ __eprintf (string, expression, line, filename) fflush (stderr); abort (); } + +#endif #endif #ifdef L_bb