diff options
Diffstat (limited to 'gcc/gen-protos.c')
-rw-r--r-- | gcc/gen-protos.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/gcc/gen-protos.c b/gcc/gen-protos.c index 08b7ea8..1085035 100644 --- a/gcc/gen-protos.c +++ b/gcc/gen-protos.c @@ -20,6 +20,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "scan.h" #include "cpplib.h" #include "cpphash.h" +#undef abort int verbose = 0; char *progname; @@ -182,21 +183,3 @@ main (argc, argv) return 0; } - -/* Avoid error if config defines abort as fancy_abort. - It's not worth "really" implementing this because ordinary - compiler users never run fix-header. */ - -void -fancy_abort () -{ - abort (); -} - -void -fatal (s) - char *s; -{ - fprintf (stderr, "%s: %s\n", "gen-protos", s); - exit (FATAL_EXIT_CODE); -} |