aboutsummaryrefslogtreecommitdiff
path: root/gcc/gen-protos.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-05-16 18:03:31 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-05-16 18:03:31 -0400
commit3efba298c7bafb883a504fea152b151820c1ac9d (patch)
tree88004db04434e773e995aceb1ed7c095a00e724c /gcc/gen-protos.c
parent84ee6fd478f21c36abcc7d8b99c7f996ba267a48 (diff)
downloadgcc-3efba298c7bafb883a504fea152b151820c1ac9d.zip
gcc-3efba298c7bafb883a504fea152b151820c1ac9d.tar.gz
gcc-3efba298c7bafb883a504fea152b151820c1ac9d.tar.bz2
Use FATAL_EXIT_CODE instead of FAILURE_EXIT_CODE.
From-SVN: r9725
Diffstat (limited to 'gcc/gen-protos.c')
-rw-r--r--gcc/gen-protos.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/gen-protos.c b/gcc/gen-protos.c
index 3b5c610..a7f77a9 100644
--- a/gcc/gen-protos.c
+++ b/gcc/gen-protos.c
@@ -1,5 +1,5 @@
/* gen-protos.c - massages a list of prototypes, for use by fixproto.
- Copyright (C) 1993, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
@@ -175,8 +175,5 @@ fatal (s)
char *s;
{
fprintf (stderr, "%s: %s\n", "gen-protos", s);
-#ifndef FAILURE_EXIT_CODE
-#define FAILURE_EXIT_CODE 33 /* gnu cc command understands this */
-#endif
- exit (FAILURE_EXIT_CODE);
+ exit (FATAL_EXIT_CODE);
}