mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-05 06:23:58 +08:00
2007-10-03 Pierre Muller <muller@ics.u-strasbg.fr>
* objc-exp.y: ARI fix: remove 4 PARAMS.
This commit is contained in:
@ -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
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user