]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
parse.h: Undefine DELAY if it's defined.
authorJeffrey A Law <law@cygnus.com>
Tue, 12 Oct 1999 06:24:41 +0000 (06:24 +0000)
committerJeff Law <law@gcc.gnu.org>
Tue, 12 Oct 1999 06:24:41 +0000 (00:24 -0600)
        Tue Sep  7 15:59:56 1999  Dave Brolley  <brolley@cygnus.com>
        * parse.h: Undefine DELAY if it's defined.

From-SVN: r29912

gcc/ch/ChangeLog
gcc/ch/parse.h

index 4259eaa945bdd381e8882d25d25c7bebcc845eea..88d7ddc1af2eead7114179b1ad37b27b6407c8db 100644 (file)
@@ -1,3 +1,8 @@
+Tue Oct 12 00:23:03 1999  Jeffrey A Law  (law@cygnus.com)
+
+       Tue Sep  7 15:59:56 1999  Dave Brolley  <brolley@cygnus.com>
+       * parse.h: Undefine DELAY if it's defined.
+
 Mon Aug 16 01:29:24 PDT 1999 Jeff Law  (law@cygnus.com)
 
        * gcc-2.95.1 Released.
index 6b6b159c498206e831fd29f0b63605f2d97977e3..3c88554ba667765ae607840315502ca5d5737ebb 100644 (file)
@@ -7,6 +7,12 @@ typedef union {
 } YYSTYPE;
 extern YYSTYPE yylval;
 
+/* DELAY is defined in the standard headers on some platforms like
+   SunOS 4.1.4.  */
+#ifdef DELAY
+#undef DELAY
+#endif
+
 enum terminal
 {
   /*EOF = 0,*/