diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-16 22:03:31 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-16 22:03:31 +0000 |
commit | 548525a3454e973957956bcc6353097536000507 (patch) | |
tree | 88004db04434e773e995aceb1ed7c095a00e724c /gcc/gen-protos.c | |
parent | 7f7f2d0c506ed33cd6d86a37a4e2567821598244 (diff) | |
download | gcc-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/gen-protos.c')
-rw-r--r-- | gcc/gen-protos.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/gen-protos.c b/gcc/gen-protos.c index 3b5c6108bfb..a7f77a98b59 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); } |