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

* objc-exp.y: ARI fix: remove 4 PARAMS.
This commit is contained in:
Pierre Muller
2007-10-05 06:46:05 +00:00
parent 8482526f30
commit cada2e7b78
2 changed files with 9 additions and 4 deletions

View File

@ -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> 2007-10-03 Daniel Jacobowitz <dan@codesourcery.com>
* NEWS: Use uniform spacing. Correct version number for GDB 6.7 * NEWS: Use uniform spacing. Correct version number for GDB 6.7

View File

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