summaryrefslogtreecommitdiff
path: root/gcc/fix-header.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1995-05-16 22:03:31 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1995-05-16 22:03:31 +0000
commit548525a3454e973957956bcc6353097536000507 (patch)
tree88004db04434e773e995aceb1ed7c095a00e724c /gcc/fix-header.c
parent7f7f2d0c506ed33cd6d86a37a4e2567821598244 (diff)
downloadgcc-548525a3454e973957956bcc6353097536000507.tar.gz
Use FATAL_EXIT_CODE instead of FAILURE_EXIT_CODE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9725 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r--gcc/fix-header.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c
index e4d7d369a75..7e9a4670700 100644
--- a/gcc/fix-header.c
+++ b/gcc/fix-header.c
@@ -1189,7 +1189,7 @@ fatal (str, arg)
fprintf (stderr, "%s: %s: ", progname, inc_filename);
fprintf (stderr, str, arg);
fprintf (stderr, "\n");
- exit (FAILURE_EXIT_CODE);
+ exit (FATAL_EXIT_CODE);
}
void
@@ -1198,5 +1198,5 @@ cpp_pfatal_with_name (pfile, name)
char *name;
{
cpp_perror_with_name (pfile, name);
- exit (FAILURE_EXIT_CODE);
+ exit (FATAL_EXIT_CODE);
}