diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-16 18:02:38 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-16 18:02:38 -0400 |
commit | 84ee6fd478f21c36abcc7d8b99c7f996ba267a48 (patch) | |
tree | 8eb9e080af589a182c95994414f235c2798b4912 /gcc/cppmain.c | |
parent | 299846f2e7f5c81ba846d0740b18fd4291286051 (diff) | |
download | gcc-84ee6fd478f21c36abcc7d8b99c7f996ba267a48.tar.gz |
Use FATAL_EXIT_CODE instead of FAILURE_EXIT_CODE.
Include config.h #ifndef EMACS.
From-SVN: r9724
Diffstat (limited to 'gcc/cppmain.c')
-rw-r--r-- | gcc/cppmain.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cppmain.c b/gcc/cppmain.c index d78bf89f269..386a0ece1a5 100644 --- a/gcc/cppmain.c +++ b/gcc/cppmain.c @@ -23,6 +23,10 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. #include "cpplib.h" #include <stdio.h> +#ifndef EMACS +#include "config.h" +#endif /* not EMACS */ + extern char *getenv (); cpp_reader parse_in; @@ -89,6 +93,6 @@ main (argc, argv) cpp_finish (&parse_in); if (parse_in.errors) - exit (FAILURE_EXIT_CODE); + exit (FATAL_EXIT_CODE); exit (SUCCESS_EXIT_CODE); } |