Modified Files:
ChangeLog c-exp.y
* c-exp.y : fix grammar to parse ellipsis (...)
(fix pr4218)
+Tue Dec 28 12:06:57 1993 Kung Hsu (kung@cirdan.cygnus.com)
+
+ * c-exp.y : fix grammar to parse ellipsis (...)
+
Mon Dec 27 18:42:14 1993 Kung Hsu (kung@cirdan.cygnus.com)
* stabsread.c (read_type): fix problem when reading static member
be too. */
| CONST_KEYWORD typebase { $$ = $2; }
| VOLATILE_KEYWORD typebase { $$ = $2; }
+ | '.' '.' '.' { $$ = NULL; }
;
typename: TYPENAME