diff options
author | Richard Stallman <rms@gnu.org> | 1992-10-01 03:34:27 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-10-01 03:34:27 +0000 |
commit | bba2431c5d74a2933fb73b718ccbc9c4f6f4c802 (patch) | |
tree | e882bb386ba405309be0b13d25c744e28adb7db3 /gcc | |
parent | 82c14fc83c47c3271f585cc969ea88d0682b51c6 (diff) | |
download | gcc-bba2431c5d74a2933fb73b718ccbc9c4f6f4c802.zip gcc-bba2431c5d74a2933fb73b718ccbc9c4f6f4c802.tar.gz gcc-bba2431c5d74a2933fb73b718ccbc9c4f6f4c802.tar.bz2 |
(__eprintf): Do nothing if inhibit_eprintf is defined.
From-SVN: r2289
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/libgcc2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 00c3909..2442b2d 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 <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 |