* fix-header.c (read_scan_file): Use CPP_FATAL_ERRORS.
authorPer Bothner <bothner@gcc.gnu.org>
Fri, 7 Jun 1996 07:32:32 +0000 (00:32 -0700)
committerPer Bothner <bothner@gcc.gnu.org>
Fri, 7 Jun 1996 07:32:32 +0000 (00:32 -0700)
From-SVN: r12210

gcc/fix-header.c

index bae5e15e658a51dd0cef35039c8320806ca8546c..94873df7493f6955449ba609ae70184fb455f31d 100644 (file)
@@ -84,6 +84,10 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 extern void cpp_fatal ();
 
+#if !__STDC__ && !defined(const)
+#define const /* nothing */
+#endif
+
 sstring buf;
 
 int verbose = 0;
@@ -602,9 +606,9 @@ read_scan_file (in_fname, argc, argv)
   scan_in.data = &scan_options;
   cpp_options_init (&scan_options);
   i = cpp_handle_options (&scan_in, argc, argv);
-  if (i < argc && scan_in.errors < CPP_FATAL_LIMIT)
+  if (i < argc && ! CPP_FATAL_ERRORS (&scan_in))
     cpp_fatal (&scan_in, "Invalid option `%s'", argv[i]);
-  if (scan_in.errors >= CPP_FATAL_LIMIT)
+  if (CPP_FATAL_ERRORS (&scan_in))
     exit (FATAL_EXIT_CODE);
 
   if (! cpp_start_read (&scan_in, in_fname))