Browse Source

2007-10-03 Pierre Muller <muller@ics.u-strasbg.fr>

* objc-exp.y: ARI fix: remove 4 PARAMS.
insight_6_8-branch
Pierre Muller 19 years ago
parent
commit
cada2e7b78
  1. 5
      gdb/ChangeLog
  2. 8
      gdb/objc-exp.y

5
gdb/ChangeLog

@ -1,3 +1,8 @@
2007-10-03 Pierre Muller <muller@ics.u-strasbg.fr>
* objc-exp.y: ARI fix: remove 4 PARAMS.
2007-10-03 Daniel Jacobowitz <dan@codesourcery.com>
* NEWS: Use uniform spacing. Correct version number for GDB 6.7

8
gdb/objc-exp.y

@ -108,13 +108,13 @@
#endif
int
yyparse PARAMS ((void));
yyparse (void);
static int
yylex PARAMS ((void));
yylex (void);
void
yyerror PARAMS ((char *));
yyerror (char *);
%}
@ -151,7 +151,7 @@ yyerror PARAMS ((char *));
%{
/* YYSTYPE gets defined by %union. */
static int
parse_number PARAMS ((char *, int, int, YYSTYPE *));
parse_number (char *, int, int, YYSTYPE *);
%}
%type <voidval> exp exp1 type_exp start variable qualified_name lcurly

Loading…
Cancel
Save