Use FATAL_EXIT_CODE instead of FAILURE_EXIT_CODE.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 16 May 1995 22:03:31 +0000 (22:03 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 16 May 1995 22:03:31 +0000 (22:03 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9725 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cccp.c
gcc/cpplib.c
gcc/cpplib.h
gcc/fix-header.c
gcc/gen-protos.c

index e6870cd..b699471 100644 (file)
@@ -333,14 +333,6 @@ HOST_WIDE_INT parse_c_expression PROTO((char *));
 extern int errno;
 #endif
 \f
-#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
 }
 
index 3f3e212..6517deb 100644 (file)
@@ -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);
index 3036760..f1c36a0 100644 (file)
@@ -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;
index e4d7d36..7e9a467 100644 (file)
@@ -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);
 }
index 3b5c610..a7f77a9 100644 (file)
@@ -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);
 }