(__eprintf): Do nothing if inhibit_eprintf is defined.
authorRichard Stallman <rms@gnu.org>
Thu, 1 Oct 1992 03:34:27 +0000 (03:34 +0000)
committerRichard Stallman <rms@gnu.org>
Thu, 1 Oct 1992 03:34:27 +0000 (03:34 +0000)
From-SVN: r2289

gcc/libgcc2.c

index 00c3909d19643c27df8d964e9a98dbed9bf68c37..2442b2d10549263aeca02383d166c0c4e829a075 100644 (file)
@@ -1149,6 +1149,8 @@ __builtin_saveregs ()
 #endif
 \f
 #ifdef L_eprintf
+#ifndef inhibit_eprintf
+
 #undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch.  */
 #include <stdio.h>
 /* This is used by the `assert' macro.  */
@@ -1163,6 +1165,8 @@ __eprintf (string, expression, line, filename)
   fflush (stderr);
   abort ();
 }
+
+#endif
 #endif
 
 #ifdef L_bb