Use FATAL_EXIT_CODE instead of FAILURE_EXIT_CODE.

From-SVN: r9725
This commit is contained in:
Richard Kenner 1995-05-16 18:03:31 -04:00
parent 84ee6fd478
commit 3efba298c7
5 changed files with 11 additions and 30 deletions

View File

@ -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
}

View 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);

View 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;

View 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);
}

View 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);
}