From: kenner Date: Tue, 16 May 1995 22:03:31 +0000 (+0000) Subject: Use FATAL_EXIT_CODE instead of FAILURE_EXIT_CODE. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=548525a3454e973957956bcc6353097536000507;p=platform%2Fupstream%2Flinaro-gcc.git 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 --- diff --git a/gcc/cccp.c b/gcc/cccp.c index e6870cd..b699471 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -333,14 +333,6 @@ HOST_WIDE_INT parse_c_expression PROTO((char *)); extern int errno; #endif -#ifndef FAILURE_EXIT_CODE -#define FAILURE_EXIT_CODE 33 /* gnu cc command understands this */ -#endif - -#ifndef SUCCESS_EXIT_CODE -#define SUCCESS_EXIT_CODE 0 /* 0 means success on Unix. */ -#endif - /* Name under which this program was invoked. */ static char *progname; @@ -2094,7 +2086,7 @@ main (argc, argv) int fd = open (pend_files[i], O_RDONLY, 0666); if (fd < 0) { perror_with_name (pend_files[i]); - return FAILURE_EXIT_CODE; + return FATAL_EXIT_CODE; } finclude (fd, pend_files[i], &outbuf, 0, NULL_PTR); } @@ -2289,7 +2281,7 @@ main (argc, argv) int fd = open (pend_includes[i], O_RDONLY, 0666); if (fd < 0) { perror_with_name (pend_includes[i]); - return FAILURE_EXIT_CODE; + return FATAL_EXIT_CODE; } finclude (fd, pend_includes[i], &outbuf, 0, NULL_PTR); } @@ -2336,7 +2328,7 @@ main (argc, argv) fatal ("I/O error on output"); if (errors) - exit (FAILURE_EXIT_CODE); + exit (FATAL_EXIT_CODE); exit (SUCCESS_EXIT_CODE); perror: @@ -9936,7 +9928,7 @@ fatal (PRINTF_ALIST (msg)) vfprintf (stderr, msg, args); va_end (args); fprintf (stderr, "\n"); - exit (FAILURE_EXIT_CODE); + exit (FATAL_EXIT_CODE); } /* More 'friendly' abort that prints the line and file. @@ -9965,7 +9957,7 @@ pfatal_with_name (name) #ifdef VMS exit (vaxc$errno); #else - exit (FAILURE_EXIT_CODE); + exit (FATAL_EXIT_CODE); #endif } diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 3f3e212..6517deb 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -5999,7 +5999,7 @@ push_parse_file (pfile, fname) if (fd < 0) { cpp_perror_with_name (pfile, pend->arg); - return FAILURE_EXIT_CODE; + return FATAL_EXIT_CODE; } cpp_push_buffer (pfile, NULL, 0); finclude (pfile, fd, pend->arg, 0, NULL_PTR); @@ -6164,7 +6164,7 @@ push_parse_file (pfile, fname) if (fd < 0) { cpp_perror_with_name (pfile, pend->arg); - return FAILURE_EXIT_CODE; + return FATAL_EXIT_CODE; } cpp_push_buffer (pfile, NULL, 0); finclude (pfile, fd, pend->arg, 0, NULL_PTR); diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 3036760..f1c36a0 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -31,14 +31,6 @@ extern "C" { typedef unsigned char U_CHAR; -#ifndef FAILURE_EXIT_CODE -#define FAILURE_EXIT_CODE 33 /* gnu cc command understands this */ -#endif - -#ifndef SUCCESS_EXIT_CODE -#define SUCCESS_EXIT_CODE 0 /* 0 means success on Unix. */ -#endif - struct parse_file; typedef struct cpp_reader cpp_reader; typedef struct cpp_buffer cpp_buffer; diff --git a/gcc/fix-header.c b/gcc/fix-header.c index e4d7d36..7e9a467 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); } 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); }