mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-30 06:25:27 +08:00
Use FATAL_EXIT_CODE instead of FAILURE_EXIT_CODE.
Include config.h #ifndef EMACS. From-SVN: r9724
This commit is contained in:
parent
299846f2e7
commit
84ee6fd478
@ -25,6 +25,10 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|||||||
#include "cpplib.h"
|
#include "cpplib.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#ifndef EMACS
|
||||||
|
#include "config.h"
|
||||||
|
#endif /* not EMACS */
|
||||||
|
|
||||||
/* Print the file names and line numbers of the #include
|
/* Print the file names and line numbers of the #include
|
||||||
commands which led to the current file. */
|
commands which led to the current file. */
|
||||||
|
|
||||||
@ -106,7 +110,7 @@ fatal (str, arg)
|
|||||||
fprintf (stderr, "%s: ", progname);
|
fprintf (stderr, "%s: ", progname);
|
||||||
fprintf (stderr, str, arg);
|
fprintf (stderr, str, arg);
|
||||||
fprintf (stderr, "\n");
|
fprintf (stderr, "\n");
|
||||||
exit (FAILURE_EXIT_CODE);
|
exit (FATAL_EXIT_CODE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -119,6 +123,6 @@ cpp_pfatal_with_name (pfile, name)
|
|||||||
#ifdef VMS
|
#ifdef VMS
|
||||||
exit (vaxc$errno);
|
exit (vaxc$errno);
|
||||||
#else
|
#else
|
||||||
exit (FAILURE_EXIT_CODE);
|
exit (FATAL_EXIT_CODE);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,10 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|||||||
#include "cpplib.h"
|
#include "cpplib.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#ifndef EMACS
|
||||||
|
#include "config.h"
|
||||||
|
#endif /* not EMACS */
|
||||||
|
|
||||||
extern char *getenv ();
|
extern char *getenv ();
|
||||||
|
|
||||||
cpp_reader parse_in;
|
cpp_reader parse_in;
|
||||||
@ -89,6 +93,6 @@ main (argc, argv)
|
|||||||
cpp_finish (&parse_in);
|
cpp_finish (&parse_in);
|
||||||
|
|
||||||
if (parse_in.errors)
|
if (parse_in.errors)
|
||||||
exit (FAILURE_EXIT_CODE);
|
exit (FATAL_EXIT_CODE);
|
||||||
exit (SUCCESS_EXIT_CODE);
|
exit (SUCCESS_EXIT_CODE);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user