aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-10-12 06:24:41 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-10-12 06:24:41 +0000
commitdd4d7b59e205e8e9ea5f014ebc6079c454d178e8 (patch)
tree63a5d99cef8510b78bb9f12a5a288b6c4d227267 /gcc
parentc3c16744472933326ec850649dd4688ac9cc394d (diff)
Tue Sep 7 15:59:56 1999 Dave Brolley <brolley@cygnus.com>
* parse.h: Undefine DELAY if it's defined. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-2_95-branch@29912 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ch/ChangeLog5
-rw-r--r--gcc/ch/parse.h6
2 files changed, 11 insertions, 0 deletions
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog
index 4259eaa945b..88d7ddc1af2 100644
--- a/gcc/ch/ChangeLog
+++ b/gcc/ch/ChangeLog
@@ -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.
diff --git a/gcc/ch/parse.h b/gcc/ch/parse.h
index 6b6b159c498..3c88554ba66 100644
--- a/gcc/ch/parse.h
+++ b/gcc/ch/parse.h
@@ -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,*/